-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Junior's Website</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<header>
<nav id="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<h1>Welcome to our Website</h1>
</section>
<section id="about">
<h2>About Us</h2>
<p>Thanks for visiting, hope you weren't too bored!</p>
<p>Hello there! I'm K_i_c_k. You may call me Junior5a, Junior Epic, or Junior Duck. It's up to you.</p>
<p>I enjoy playing video games, particularly Minecraft, Gears 5, Streets of Rage, and many others.</p>
</section>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>Service 1</li>
<li>Service 2</li>
<li>Service 3</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form id="contact-form" method="post" action="send_email.php">
<input name="name" placeholder="Your Name" required type="text">
<input name="email" placeholder="Your Email" required type="email">
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2023 Your Company. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>