-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (48 loc) · 1.59 KB
/
index.html
File metadata and controls
58 lines (48 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Advanced Webpage you understand?</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>My Advanced Webpage, you understand?</h1>
<nav>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h2>About This Page</h2>
<p>This section explains the purpose of the site and introduces advanced HTML structure, you understand?</p>
</section>
<figure>
<img src="image1.jpg" alt="HTML and CSS code example">
<figcaption>Figure 1: Clean semantic code improves readability and accessibility.</figcaption>
</figure>
<section id="gallery">
<h2>Image Gallery</h2>
<p>Preview of design samples will go here later you understand?</p>
</section>
<section id="contact">
<h2>Contact Form</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>2025 Web Technologies Essentials</p>
</footer>
</body>
</html>