-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (104 loc) · 4.36 KB
/
index.html
File metadata and controls
113 lines (104 loc) · 4.36 KB
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
<!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>Project 2</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" type="images/jpg" href="./images/qa.jpg">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<body>
<div class="wrapper">
<!-- Navigation Bar -->
<nav class="main-nav">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Service</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
<!-- showcase -->
<section class="top-container">
<header class="showcase">
<h1><span class="res-1">Grid</span> <span class="res-2">Practice</span> </h1>
<p>Lorem ipsum dolor, sit amet consectetur <span class="res-1">adipisicing </span> elit. Molestiae error molestias laboriosam
beatae, earum reprehenderit laborum expedita sint. Tempora, quasi.</p>
<a href="#" class="btn">Read More</a>
</header>
<div class="top-box top-a">
<h4>Buy Membeship</h4>
<p>$199</p>
<a href="#" class="btn">Buy Now</a>
</div>
<div class="top-box top-b">
<h4>Buy Pro-Membeship</h4>
<p>$299</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-2x"></i>
<h3>Analysis</h3>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo, optio?</p>
</div>
<div class="box">
<i class="fas fa-globe fa-2x"></i>
<h3>Marketing</h3>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo, optio?</p>
</div>
<div class="box">
<i class="fas fa-cog fa-2x"></i>
<h3>Development</h3>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo, optio?</p>
</div>
<div class="box">
<i class="fas fa-users fa-2x"></i>
<h3>Support</h3>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo, optio?</p>
</div>
</section>
<!-- info section -->
<section class="info">
<img src="./Images/glacier.jpg" alt="Image">
<div>
<h2>Business Ideas</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nam fugiat, sunt dolorem dolor delectus,
placeat doloribus at inventore expedita qui minima optio rerum doloremque deserunt quae fugit
quidem. Itaque, consectetur?</p>
<a href="#" class="btn">Learn More</a>
</div>
</section>
<!-- portfolio -->
<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/204x200" alt="">
<img src="https://source.unsplash.com/random/205x200" 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>
<p>©, 2022</p>
</footer>
</div>
<!-- wrapper ends -->
</body>
</html>