-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
40 lines (37 loc) · 1.2 KB
/
landing.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
<!-- #HTML CODE -->
<!-- **************************************************************************************** -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="landing2.css" />
<title>Suman Landing Page</title>
</head>
<body>
<header>
<h1>CodSoft Internship</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Welcome to our Awesome Product</h2>
<p>Discover the amazing features that will revolutionize your life!</p>
<a href="#" class="cta-button">Get Started</a>
</section>
<footer>
<p>
© 2023 Your Company. All rights reserved.<br />
Owner- Suman Mandal <br />
Web Development Internship (Level 1:- Task 1)
</p>
</footer>
</body>
</html>
<!-- ********************************************************************************* -->