-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (81 loc) · 3.21 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>
<head>
<meta charset="utf-8">
<title>Landing Page</title>
<!-- Google Fonts -->
<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,400;0,500;0,700;0,900;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- hero BLOCK -->
<div class="hero">
<div class="hero__inner">
<div class="header">
<div class="header__inner">
<div class="logo">teneffus design</div>
<div class="nav">
<a href="#" class="nav__item nav__item_selected">Home</a>
<a href="#" class="nav__item">About</a>
<a href="#" class="nav__item">Contact</a>
</div>
</div>
</div>
<div class="hero__main">
<div class="hero__content">
<div class="hero__main-text">Design is newly created</div>
<div class="hero__sub-text">As a small design atelier we create awesome products that look like gorgeous. We are always inspire from nature and we create for digital. </div>
<button class="button">Sign up</button>
</div>
<div class="hero__img"></div>
</div>
</div>
</div>
<!-- product-section BLOCK -->
<div class="product-section">
<div class="product-section__inner">
<div class="product-section__main-text">Our Process to Create Product</div>
<div class="gallery">
<div class="gallery-item">
<div class="gallery-item__img"></div>
<div class="gallery-item__text">Idea is important step for us</div>
</div>
<div class="gallery-item">
<div class="gallery-item__img"></div>
<div class="gallery-item__text">Create a quick mockup an idea</div>
</div>
<div class="gallery-item">
<div class="gallery-item__img"></div>
<div class="gallery-item__text">Designers to create awesome lines</div>
</div>
<div class="gallery-item">
<div class="gallery-item__img"></div>
<div class="gallery-item__text">Our Developers created codebase</div>
</div>
</div>
</div>
</div>
<!-- quote-section BLOCK -->
<div class="quote-section">
<div class="quote-section__inner">
<div class="quote-section__text">This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who knows? All I know is that it looks nice. </div>
<div class="quote-section__author">-Thor, God of Thunder</div>
</div>
</div>
<!-- cta-modal BLOCK -->
<div class="cta-modal">
<div class="cta-modal__inner">
<div class="cta-modal__text-section">
<div class="cta-modal__main-text">Call to action! It's time!</div>
<div class="cta-modal__sub-text">Sign up for our product by clicking that button right over there! </div>
</div>
<button class="button cta-modal__button">Sign up</button>
</div>
</div>
<!-- footer BLOCK -->
<div class="footer">Copyright © The Odin Project 2021 </div>
</body>
</html>