-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (114 loc) · 3.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Grid_website</title>
<link
href="/node_modules/@fortawesome/fontawesome-free/css/all.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
<nav class="main-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
<!-- Top Container -->
<section class="top-container">
<header class="showcase">
<h1>USER EXPERIENCE/FRONTEND</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto,
laboriosam. Commodi maxime impedit soluta odio!
</p>
<a href="#" class="btn">Read more</a>
</header>
<div class="top-box top-box-a">
<h4>Membership</h4>
<p class="price">26 000 FCFA/Month</p>
<a href="#" class="btn">Buy now</a>
</div>
<div class="top-box top-box-b">
<h4>Pro Membership</h4>
<p class="price">55 000 FCFA/Month</p>
<a href="#" class="btn">Buy now</a>
</div>
</section>
<!-- Boxes section -->
<section class="boxes">
<div class="box">
<i class="fas fa-chart-pie fa-4x"></i>
<h3>Analytica</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Consequatur, quisquam.
</p>
</div>
<div class="box">
<i class="fas fa-globe fa-4x"></i>
<h3>Marketing</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Consequatur, quisquam.
</p>
</div>
<div class="box">
<i class="fas fa-cog fa-4x"></i>
<h3>Development</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Consequatur, quisquam.
</p>
</div>
<div class="box">
<i class="fas fa-users fa-4x"></i>
<h3>Suport</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Consequatur, quisquam.
</p>
</div>
</section>
<!-- Info section -->
<section class="info">
<img src="img/pic2.jpg" alt="" />
<div>
<h2>Your business on the web</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis
suscipit asperiores qui laudantium neque tenetur nobis consequuntur
illum fugiat modi animi, voluptatem dolorem sequi assumenda tempore
culpa aspernatur sint ullam?
</p>
<a href="#" class="btn">Learn More</a>
</div>
</section>
<!-- Portfolio Section -->
<section class="portfolio">
<img src="https://source.unsplash.com/random/200x200" alt="" />
<img src="https://source.unsplash.com/random/201x200" alt="" />
<img src="https://source.unsplash.com/random/202x200" alt="" />
<img src="https://source.unsplash.com/random/203x200" alt="" />
<img src="https://source.unsplash.com/random/203x200" alt="" />
<img src="https://source.unsplash.com/random/204x200" alt="" />
<img src="img/pic3.jpg" alt="" />
<img src="https://source.unsplash.com/random/206x200" alt="" />
<img src="https://source.unsplash.com/random/207x200" alt="" />
<img src="https://source.unsplash.com/random/208x200" alt="" />
<img src="https://source.unsplash.com/random/209x200" alt="" />
</section>
<!-- Footer-->
<footer>
Grid_Website by Theryx 2020
</footer>
</div>
<!-- Wrapper ends -->
</body>
</html>