-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header id="header">
<div id="site-creator">
<img src="site-creator-avatar.png" alt="Site Creator" id="site-creator-avatar">
<div id="site-creator-bio">
<h3>About AZIZ MESSAOUD</h3>
<p>LDetail-oriented and ambitious software engineering student 🖥️ with a proven track record of achieving accurate results on team projects. Skilled in programming languages such as Python, C, and Arduino. Seeking an entry-level software engineering position to apply my programming skills and continue to grow in the industry.</p>
</div>
</div>
<img id="header-img" src="your-logo.png" alt="Logo">
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#features">Features</a></li>
<li><a class="nav-link" href="#how-it-works">How It Works</a></li>
<li><a class="nav-link" href="#pricing">Pricing</a></li>
</ul>
</nav>
</header>
<video id="video" src="product-video.mp4" controls></video>
<form id="form" action="https://www.freecodecamp.com/email-submit" method="POST">
<label for="email">Enter your email:</label>
<input type="email" id="email" name="email" placeholder="Email" required>
<input type="submit" id="submit" value="Submit">
</form>
<section id="features">
<h2>Features</h2>
<!-- Add your feature content here -->
</section>
<section id="how-it-works">
<h2>How It Works</h2>
<!-- Add your "how it works" content here -->
</section>
<section id="pricing">
<h2>Pricing</h2>
<!-- Add your pricing options here -->
</section>
<script src="script.js"></script>
</body>
</html>