-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml sec.html
48 lines (44 loc) · 2.02 KB
/
html sec.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page </title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
</head>
<body>
<section>
<input type="checkbox" id="check">
<header>
<img href="#" src="eco-world.png" alt="" height="70" width="70">
<div class="navigation">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Info</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</div>
<label for="check">ṅṣ
<i class="fas fa-bars menu-btn"></i>
<i class="fas fa-times close-btn"></i>
</label>
</header>
<div class="content">
<div class="info">
<h2>Love Arctic <br><span>Save It!</span></h2>
<p>The Arctic is a region of extremes: extreme cold, extreme seasonal changes in daylight, and extreme winds. It sits at the top of world, covered in sea ice—a seemingly unwelcome place for life. Yet the Arctic is actually teeming with wildlife, from large mammals like walruses and polar bears to birds, fish, small plants, and even tiny ocean organisms called plankton.</p>
<a href="#" class="info-btn">More Info</a>
</div>
</div>
<div class="media-icons">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-whatsapp"></i></a>
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
</div>
<a href="#" class="last">About-Us</a>
</section>
</body>
</html>