-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (91 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Studio</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<!--Header section-->
<header>
<h1><a href="#">WebStudio</a></h1>
<nav>
<ul>
<li><a href="#">Studio</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
<ul>
<li><a href="#">[email protected]</a></li>
<li><a href="#">212-772-4150</a></li>
</ul>
</header>
<!--main part starts here-->
<main>
<section>
<div>
<h1>EFFECTIVE SOLUTIONS FOR YOUR BUSINESS</h1>
<button type="button">Request our service</button>
</div>
</section>
<section>
<div>
<h5>ATTENTION TO DETAILS</h5>
<p>We go into all the details and processes of your business to develop a customized solution.</p>
<h5>PUNCTUALITY</h5>
<p>With us, you can feel safe and secure. An important principle of the company: respect your time and deadlines.</p>
<h5>PLANNING</h5>
<p>You will be able to observe and participate in every phase of solution development and implementation.</p>
<h5>MODERN TECHNOLOGIES</h5>
<p>We use innovative tools to solve assigned tasks. It's time to simplify work processes.</p>
</div>
</section>
<h2>What we do</h2>
<div>
<img src="./images/box_1.jpg" alt="typing_at_keyboard_picture" width="300">
<img src="./images/box_2.jpg" alt="looking_at_phone_picture" width="300">
<img src="./images/box_3.jpg" alt="writing_on_tablet_picture" width="300">
</div>
<section>
<h2>Our Team</h2>
<div>
<img src="./images/team_card_1.jpg" alt="product_designer" width="300">
<h6>Christopher Walker</h6>
<p>Product Designer</p>
</div>
<div>
<img src="./images/team_card_2.jpg" alt="frontend_developer" width="300">
<h6>Kylie Evans</h6>
<p>Frontend Developer</p>
</div>
<div>
<img src="./images/team_card_3.jpg" alt="marketing" width="300">
<h6>Ryan Harris</h6>
<p>Marketing</p>
</div>
<div>
<img src="images/team_card_4.jpg" alt="ui_designer" width="300">
<h6>Tyler Moore</h6>
<p>UI Designer</p>
</div>
</section>
</main>
<!--footer section-->
<footer>
<h3><a href="#">WebStudio</a></h3>
<div>
<ul>
<li>695 Park Ave, NY 10065, USA</li>
<li>
<address>
<a href="mailto:[email protected]">[email protected]</a></li>
<li>
<a href="tel:+1 212-772-4150">+1 212-772-4150</a></li>
</address>
</ul>
</div>
</footer>
</body>
</html>