generated from arhip14/tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (108 loc) · 5.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebStudio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@800&family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/modern-normalize.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--------HEADER-------->
<header>
<div class="container main-nav">
<nav class="header-nav">
<a href="./index.html" class="logo"><span>Web</span>Studio</a>
<ul class="nav-list">
<li class="nav-item"><a class="nav-link" href="">Studio</a></li>
<li class="nav-item"><a class="nav-link"href="./portfolio.html" >Portfolio</a></li>
<li class="nav-item"><a class="nav-link"href="" >Contacts</a></li>
</ul>
</nav>
<address class="contacts">
<ul class="contacts-list" >
<li class="contacts-item"><a href="mailto:[email protected]" class="contacts-link">[email protected]</a></li>
<li class="contacts-item"><a href="tel:+110001111111" class="contacts-link">+11 (000) 111-11-11</a></li>
</ul>
</address>
</div>
</header>
<main>
<!--------HERO-------->
<section class="hero" >
<div class="container"><h1 class="hero-title">Effective Solutions for Your Business</h1>
<button type="button" class="main-btn btn">Order Service</button></div>
</section>
<section class="advatages-list">
<div class="container"> <h2 hidden>advantages</h2>
<ul class="list advantages">
<li class="advantages-item">
<h3 class="decsr advantages-descr">Strategy</h3>
<p >Our goal is to identify the business problem to walk away with the perfect and creative solution.</p>
</li>
<li class="advantages-item">
<h3 class="decsr advantages-descr" >Punctuality</h3>
<p >Bring the key message to the brand's audience for the best price within the shortest possible time.</p>
</li>
<li class="advantages-item">
<h3 class="decsr advantages-descr">Diligence</h3>
<p >Research and confirm brands that present the strongest digital growth opportunities and minimize risk.</p>
</li>
<li class="advantages-item">
<h3 class="decsr advantages-descr">Technologies</h3>
<p >Design practice focused on digital experiences. We bring forth a deep passion for problem-solving.</p>
</li>
</ul>
</div>
</section>
<section class="img-list">
<div class="container">
<h2 class="title example-title">What are we doing</h2>
<ul class="example-pictures list">
<li class="example-pictures-list "><img src="./images/imac.jpg" alt="imac" width="360"></li>
<li class="example-pictures-list "><img src="./images/iphone.jpg" alt="iphone" width="360"></li>
<li class="example-pictures-list "><img src="./images/maciphone.jpg" alt="maciphone" width="360"></li>
</ul>
</div>
</section>
<section class="team ">
<div class="container">
<h2 class="title team-title">Our Team</h2>
<ul class="list team-list">
<li class="team-item">
<img src="./images/man1.jpg" alt="man1" width="264">
<h3 class="decsr team-descr">Mark Guerrero</h3>
<p class="sub-descr">Product Designer</p>
</li>
<li class="team-item">
<img src="./images/man2.jpg" alt="man2" width="264">
<h3 class="decsr team-descr"> Tom Ford</h3>
<p class="sub-descr">Frontend Developer</p>
</li>
<li class="team-item">
<img src="./images/girl.jpg" alt="girl" width="264">
<h3 class="decsr team-descr">Camila Garcia</h3>
<p class="sub-descr">Marketing</p>
</li>
<li class="team-item">
<img src="./images/man3.jpg" alt="man3" width="264">
<h3 class="decsr team-descr">Daniel Wilson</h3>
<p class="sub-descr">UI Designer</p>
</li>
</ul>
</div>
</section>
</main>
<!--------FOOTER-------->
<footer class="footer">
<div class="container footer-inf">
<a href="./index.html" class=" logo footer-logo"><span>Web</span>Studio</a>
<p class="footer-descr sub-descr ">Increase the flow of customers and sales for your business with digital marketing & growth solutions.</p>
</div>
</footer>
</body>
</html>