generated from renaerdelyi/goit-markup-hw-01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (148 loc) · 5.07 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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="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,700;1,700&family=Roboto:ital,wght@0,100;0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!--header section-->
<header class="header-section">
<div>
<a class="logo" href="#"
><p><span class="span">Web</span>Studio</p></a
>
</div>
<nav class="header-section__nav">
<ul class="nav-links">
<li><a class="nav-link" href="index.html">Studio</a></li>
<li>
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li><a class="nav-link" href="#">Contacts</a></li>
</ul>
</nav>
<div>
<a class="header-section__mail" href="mailto:[email protected]"
>
<a class="header-section__tel" href="tel:++1212-772-4150"
>+1 212-772-4150</a
>
</div>
</header>
<!--portiunea principala a paginii web-->
<main>
<!--hero section-->
<section class="hero-section">
<h1 class="hero-section__title">
EFFECTIVE SOLUTIONS FOR <br />YOUR BUSINESS
</h1>
<button type="button">Request our service</button>
</section>
<!--about section-->
<section class="about-secion">
<div>
<h5 class="about-section__title">ATTENTION TO DETAILS</h5>
<p class="about-section__text">
We go into all the details and processes of your business to develop
a customized solution.
</p>
</div>
<div>
<h5 class="about-section__title">PUNCTUALITY</h5>
<p class="about-section__text">
With us, you can feel safe and secure. An important principle of the
company: respect your time and deadlines.
</p>
</div>
<div>
<h5 class="about-section__title">PLANNING</h5>
<p class="about-section__text">
You will be able to observe and participate in every phase of
solution development and implementation.
</p>
</div>
<div>
<h5 class="about-section__title">MODERN TECHNOLOGIES></h5>
<p class="about-section__text">
We use innovative tools to solve assigned tasks. It's time to
simplify work processes.
</p>
</div>
</section>
<!--what we do section-->
<section class="what-we-do-secion">
<h2 class="what-we-do-title">What we do</h2>
<!--div cu imagini-->
<div>
<img src="./images/poza-1.jpg" alt="poza-1" width="200" />
<img src="./images/poza-2.jpg" alt="poza-2" width="200" />
<img src="./images/poza-3.jpg" alt="poza-3" width="200" />
</div>
</section>
<!--our team section-->
<section class="our-team-section">
<h2 class="what-we-do-title">Our Team</h2>
<!--div cu carduri despre membrii echipei-->
<div style="display: flex; gap: 30px">
<!--card1-->
<div>
<img
src="./images/christopherwalker.jpg"
alt="christopherwalker"
width="200"
/>
<p class="our-team__name">Christopher Walker</p>
<p class="our-team__text">Product Designer</p>
</div>
<div>
<img src="./images/kyleevans.jpg" alt="kyleevans" width="200" />
<p class="our-team__name">Kylie Evans</p>
<p class="our-team__text">Frontend Developer</p>
</div>
<div>
<img src="./images/ryanheris.jpg" alt="ryanheris" width="200" />
<p class="our-team__name">Ryan Harris</p>
<p class="our-team__text">Marketing</p>
</div>
<div>
<img src="./images/tylermoore.jpg" alt="tylermoore" width="200" />
<p class="our-team__name">Tyler Moore</p>
<p class="our-team__text">UI Designer</p>
</div>
</div>
</section>
</main>
<!--footer section-->
<footer class="footer-section">
<div>
<a class="logo-footer." href="#"
><p><span class="span-logo">Web</span>Studio</p></a
>
</div>
<address class="footer-section__adress">
695 Park Ave, NY 10065, USA
</address>
<ul class="footer-section__contacts">
<li>
<a class="footer-section__contact" href="mailto:[email protected]"
>
</li>
<li>
<a class="footer-section__contact" href="tel:++1212-772-4150"
>+1 212-772-4150</a
>
</li>
</ul>
</footer>
</body>
</html>