-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (114 loc) · 4.9 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
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<!--Main Page-->
<head>
<meta charset="UTF-8">
<title>WebStudio Main Page</title>
<link rel="stylesheet" href="./css/style.css">
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<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:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body>
<!--Header with Company's Abouts -->
<header>
<h3>
<a class="logo-h" href="#"><span class="logo-item">Web</span>Studio</a>
</h3>
<!--Local Navigables-->
<nav>
<ul>
<li><a class="link-menu" href="index.html">Studio</a></li>
<li><a class="link-menu" href="portfolio.html">Portfolio</a></li>
<li><a class="link-menu" href="#">Contacts</a></li>
</ul>
</nav>
<!--Contact Data-->
<ul>
<li><a class="link-h" href="mailto:[email protected]">[email protected]</a></li>
<li><a class="link-h" href="tel:+1212-772-4150">+1 212-772-4150</a></li>
</ul>
</header>
<!--Main Content-->
<main>
<!--Hero section-->
<section>
<h1>EFFECTIVE SOLUTIONS FOR <br>YOUR BUSINESS</h1>
<button class="main-button" type="button">Request our service</button>
</section>
<!--Descriptions section-->
<section>
<div class="team-characteristics">
<p class="team-ch__title">ATTENTION TO DETAILS</p>
<p class="team-ch__description">We go into all the details and processes <br> of your business to develop a <br> customized solution.</p>
</div>
<div class="team-characteristics">
<p class="team-ch__title">PUNCTUALITY</p>
<p class="team-ch__description">With us, you can feel safe and secure. <br>An important principle of the company: <br> respect your time and deadlines.</p>
</div>
<div class="team-characteristics">
<p class="team-ch__title">PLANNING</p>
<p class="team-ch__description">You will be able to observe and <br> participate in every phase of solution <br> development and implementation.</p>
</div>
<div class="team-characteristics">
<p class="team-ch__title">MODERN TECHNOLOGIES</p>
<p class="team-ch__description">We use innovative tools to solve <br> assigned tasks. It's time to simplify work <br> processes.</p>
</div>
</section>
<!--'What We Do' section-->
<section>
<h2>What we do</h2>
<ul>
<li><img src="images/what-we-do-1.jpg" alt="Coding" width="370" height="294"></li>
<li><img src="images/what-we-do-2.jpg" alt="Web applications" width="370" height="294"></li>
<li><img src="images/what-we-do-3.jpg" alt="Web designing" width="370" height="294"></li>
</ul>
</section>
<!--'Our Team' section-->
<section>
<h2>Our Team</h2>
<div>
<div class="team-member">
<img src="images/cristopher.jpg" alt="Cristopher's portret" width="270" height="260">
<p class="team-member__name">Christopher Walker</p>
<p class="team-member__title">Product Designer</p>
</div>
<div class="team-member">
<img src="images/kylie.jpg" alt="Kylie's portret" width="270" height="260">
<p class="team-member__name">Kylie Evans</p>
<p class="team-member__title">Frontend Developer</p>
</div>
<div class="team-member">
<img src="images/ryan.jpg" alt="Ryan's portret" width="270" height="260">
<p class="team-member__name">Ryan Harris</p>
<p class="team-member__title">Marketing</p>
</div>
<div class="team-member">
<img src="images/tyler.jpg" alt="Tyler's portret" width="270" height="260">
<p class="team-member__name">Tyler Moore</p>
<p class="team-member__title">UI Designer</p>
</div>
</div>
</section>
</main>
<!--Footer with Company's contacts section-->
<footer>
<h3>
<a class="logo-f" href="#"><span class="logo-item">Web</span>Studio</a>
</h3>
<address>
<ul>
<li>695 Park Ave, NY 10065, USA</li>
<li><a class="link-f" href="mailto:[email protected]">[email protected]</a></li>
<li><a class="link-f" href="tel:+1212-772-4150">+1 212-772-4150</a></li>
</ul>
</address>
</footer>
</body>
</html>