-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Learning Page</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<h1>Welcome to WebTech</h1>
<nav>
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#basics">HTML Basics</a></li>
<li><a href="#elements">HTML Elements</a></li>
<li><a href="#attributes">HTML Attributes</a></li>
<li><a href="#forms">HTML Forms</a></li>
<li><a href="#tables">HTML Tables</a></li>
</ul>
</nav>
</header>
<main>
<section id="introduction">
<h2>Introduction</h2>
<p>HTML (HyperText Markup Language) is the standard markup language for creating web pages.</p>
</section>
<section id="basics">
<h2>HTML Basics</h2>
<p>HTML uses a series of elements to enclose different parts of the content to make it appear or behave a certain way.</p>
</section>
<section id="elements">
<h2>HTML Elements</h2>
<p>HTML elements are the building blocks of HTML pages. Elements are represented by tags.</p>
</section>
<section id="attributes">
<h2>HTML Attributes</h2>
<p>Attributes provide additional information about HTML elements.</p>
</section>
<section id="forms">
<h2>HTML Forms</h2>
<p>Forms are used to collect user input.</p>
</section>
<section id="tables">
<h2>HTML Tables</h2>
<p>Tables are used to organize data into rows and columns.</p>
</section>
</main>
<footer>
<p>© 2024 HTML Basics</p>
</footer>
</body>
</html>