-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (102 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<!--Main Page-->
<head>
<meta charset="UTF-8">
<title>WebStudio Main Page</title>
</head>
<body>
<!--Header with Company's Abouts -->
<header>
<h4>
<a href="#">Web<span>Studio</span></a>
</h4>
<!--Local Navigables-->
<nav>
<ul>
<li><a href="#">Studio</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
<!--Contact Data-->
<ul>
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li><a href="tel:+1212-772-4150">+1 212-772-4150</a></li>
</ul>
</header>
<!--Main Content-->
<main>
<!--Large Box section-->
<section>
<h1>EFFECTIVE SOLUTIONS FOR YOUR BUSINESS</h1>
<button type="button">Request our service</button>
</section>
<!--Descriptions section-->
<section>
<div>
<h5>ATTENTION TO DETAILS</h5>
<p>We go into all the details and processes <br> of your business to develop a <br> customized solution.</p>
</div>
<div>
<h5>PUNCTUALITY</h5>
<p>With us, you can feel safe and secure. <br>An important principle of the company: <br> respect your time and deadlines.</p>
</div>
<div>
<h5>PLANNING</h5>
<p>You will be able to observe and <br> participate in every phase of solution <br> development and implementation.</p>
</div>
<div>
<h5>MODERN TECHNOLOGIES</h5>
<p>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>
<img src="images/what-we-do-1.jpg" alt="Coding image" width="370" height="294">
<img src="images/what-we-do-2.jpg" alt="Web application image" width="370" height="294">
<img src="images/what-we-do-3.jpg" alt="Web designing image" width="370" height="294">
</section>
<!--'Our Team' section-->
<section>
<h2>Our Team</h2>
<div>
<div>
<img src="images/cristopher.jpg" alt="Cristopher's portret" width="270" height="260">
<h5>Christopher Walker</h5>
<h5>Product Designer</h5>
</div>
<div>
<img src="images/kylie.jpg" alt="Kylie's portret" width="270" height="260">
<h5>Kylie Evans</h5>
<h5>Frontend Developer</h5>
</div>
<div>
<img src="images/ryan.jpg" alt="Ryan's portret" width="270" height="260">
<h5>Ryan Harris</h5>
<h5>Marketing</h5>
</div>
<div>
<img src="images/tyler.jpg" alt="Tyler's portret" width="270" height="260">
<h5>Tyler Moore</h5>
<h5>UI Designer</h5>
</div>
</div>
</section>
</main>
<!--Footer with Company's contacts section-->
<footer>
<h4>
<a href="#">Web<span>Studio</span></a>
</h4>
<address>
<ul>
<li>695 Park Ave, NY 10065, USA</li>
<li>[email protected]</li>
<li>+1 212-772-4150</li>
</ul>
</address>
</footer>
</body>
</html>