-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (89 loc) · 4.54 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
<!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><Main>Modul 1.1</Main></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@700&family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header>
<nav class="nav">
<a class="logo" href="./index.html"><span class="logo-half">Web</span>studio</a>
<ul class="list">
<li class="list-link-item"><a class="list-link" href="./index.html">Studio</a></li>
<li class="list-link-item"><a class="list-link" href="./portfolio.html">Portfolio</a></li>
<li class="list-link-item"><a class="list-link" href="#">Contact</a></li>
</ul>
</nav>
<ul class="contacts list">
<li><a class="contact-link" href="mailto:[email protected]">[email protected]</a></li>
<li><a class="contact-link" href="tel:+11(000)111-11-11">+11 (000) 111-11-11</a></li>
</ul>
</header>
<main>
<section class="hero">
<h1 class="hero-name">Effective Solutions for Your Business</h1>
<button class="hero-button">Order service</button>
</section>
<section class="skills">
<h2 hidden>Our skills</h2>
<ul class="skills-list list">
<li>
<h3 class="list-name">Strategy</h3>
<p class="list-text">Our goal is to identify the business problem to walk away with the perfect and creative solution. </p>
</li>
<li>
<h3 class="list-name">Punctuality</h3>
<p class="list-text">Bring the key message to the brand's audience for the best price within the shortest possible time.</p>
</li>
<li>
<h3 class="list-name">Diligence</h3>
<p class="list-text">Research and confirm brands that present the strongest digital growth opportunities and minimize risk.</p>
</li>
<li>
<h3 class="list-name">Technologies</h3>
<p class="list-text">Design practice focused on digital experiences. We bring forth a deep passion for problem-solving.</p>
</li>
</ul>
</section>
<section class="services">
<h2 class="services-name">What are we doing</h2>
<ul class="list">
<li><img width="360" height="300" src="./images/img1.jpg" alt="Computer"></li>
<li><img width="360" height="300" src="./images/img2.jpg" alt="Smartphone"></li>
<li><img width="360" height="300" src="./images/img3.jpg" alt="Smartphone and Computer"></li>
</ul>
</section>
<section class="team">
<h2 class="staff">Our team</h2>
<ul class="list">
<li class="staff-card"><img width="264" height="260" src="./images/staff1.jpg" alt="Mark Guerrero">
<h3 class="staff-name">Mark Guerrero</h3>
<p class="staff-position">Product Designer</p>
</li>
<li class="staff-card"><img width="264" height="260" src="./images/staff2.jpg" alt="Tom Ford">
<h3 class="staff-name">Tom Ford</h3>
<p class="staff-position">Frontend Developer</p>
</li>
<li class="staff-card"><img width="264" height="260" src="./images/staff3.jpg" alt="Camila Garcia">
<h3 class="staff-name">Camila Garcia</h3>
<p class="staff-position">Marketing</p>
</li>
<li class="staff-card"><img width="264" height="260" src="./images/staff4.jpg" alt="Daniel Wilson">
<h3 class="staff-name">Daniel Wilson</h3>
<p class="staff-position">UI Designer</p>
</li>
</ul>
</section>
</main>
<footer>
<a class="logo" href="./index.html"><span class="footer-title"><span class="logo-half">Web</span>studio</span></a>
<p class="footer-text">Increase the flow of customers and sales for your business with digital marketing & growth solutions.</p>
</footer>
</body>
</html>