-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 3.62 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 3.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="top">HTML Tags Reference Guide</title>
<link rel="icon" href="HTML-CSS fav icon.jpg">
<link rel="stylesheet" href="style.css">
</head>
<body >
<input type="checkbox" id="menu-toggle" style="display: none;">
<header>
<label for="menu-toggle" class="menu-toggle">
<span></span>
<span></span>
<span></span>
</label>
<h1>HTML Tags Reference Guide</h1>
<div style="width: 30px;"></div> <!-- Spacer for alignment -->
</header>
<div class="overlay"></div>
<div class="container">
<nav class="sidebar">
<h2>Chapters</h2>
<ul class="chapters">
<li><a href="home.html" target="contentFrame">Home</a></li>
<li><a href="chapter1.html" target="contentFrame">Chapter 1: Getting to Know HTML</a></li>
<li><a href="chapter2.html" target="contentFrame">Chapter 2: HTML Elements</a></li>
<li><a href="chapter3.html" target="contentFrame">Chapter 3: HTML Styles</a></li>
<li><a href="chapter4.html" target="contentFrame">Chapter 4: Semantic HTML</a></li>
<li><a href="chapter5.html" target="contentFrame">Chapter 5: Web Forms</a></li>
<li><a href="chapter6.html" target="contentFrame">Chapter 6: HTML Multimedia</a></li>
<li><a href="chapter7.html" target="contentFrame">Chapter 7: HTML Graphics</a></li>
<li><a href="chapter8.html" target="contentFrame">Chapter 8: HTML Advanced</a></li>
<li><a href="chapter9.html" target="contentFrame">Chapter 9: HTML Events</a></li>
<li><a href="chapter10.html" target="contentFrame">Chapter 10: HTML APIs</a></li>
<li><a href="chapter11.html" target="contentFrame">Chapter 11: Getting to Know CSS</a></li>
<li><a href="chapter12.html" target="contentFrame">Chapter 12: CSS Selectors</a></li>
<li><a href="chapter13.html" target="contentFrame">Chapter 13: CSS Cascading</a></li>
<li><a href="chapter14.html" target="contentFrame">Chapter 14: CSS Box Model</a></li>
<li><a href="chapter15.html" target="contentFrame">Chapter 15: CSS Colors</a></li>
<li><a href="chapter16.html" target="contentFrame">Chapter 16: CSS Text</a></li>
<li><a href="chapter17.html" target="contentFrame">Chapter 17: CSS Backgrounds</a></li>
<li><a href="chapter18.html" target="contentFrame">Chapter 18: CSS Display</a></li>
<li><a href="chapter19.html" target="contentFrame">Chapter 19: CSS Layout</a></li>
<li><a href="chapter20.html" target="contentFrame">Chapter 20: CSS Transitions and Animations</a></li>
<li><a href="chapter21.html" target="contentFrame">Chapter 21: Advanced CSS</a></li>
<li><a href="chapter22.html" target="contentFrame" style="margin-bottom: 3rem;">Chapter 22: Responsive CSS</a></li>
</ul>
</nav>
<main class="main-content">
<div class="iframe-container">
<iframe class="content-iframe" src="home.html" name="contentFrame"></iframe>
</div>
</main>
</div>
<footer>
<span style="justify-items: center; text-align: center; font-size: 0.8rem;">
<p>© 2025 Tamima Mollick Tuly ID:1289110</p>
</span>
</footer>
</body>
</html>