-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkitchen-sink.html
99 lines (94 loc) · 3.27 KB
/
kitchen-sink.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kitchen Sink</title>
<link rel="stylesheet" href="styles.css">
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body>
<header class="container">
<nav>
<a href="index.html"><i data-feather="home"></i> Home</a>
<div>
<ul style="display: flex; list-style: none; padding: 0; margin: 0;">
<li style="margin-right: 1rem;"><a href="about.html"><i data-feather="user"></i> About</a></li>
<li style="margin-right: 1rem;"><a href="blog.html"><i data-feather="book-open"></i> Blog</a></li>
<li style="margin-right: 1rem;"><a href="projects.html"><i data-feather="folder"></i> Projects</a></li>
</ul>
<select class="theme-selector">
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
</div>
</nav>
</header>
<main class="container">
<h1>Kitchen Sink</h1>
<p>This page showcases various HTML elements.</p>
<section>
<h2>Table</h2>
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Details Element</h2>
<details>
<summary>Click to expand</summary>
<p>This is the content inside the details element.</p>
</details>
</section>
<section>
<h2>Blockquote</h2>
<blockquote>
<p>This is a blockquote. It is used to quote a large section of text from another source.</p>
</blockquote>
</section>
<section>
<h2>Lists</h2>
<ul>
<li>Unordered list item 1</li>
<li>Unordered list item 2</li>
</ul>
<ol>
<li>Ordered list item 1</li>
<li>Ordered list item 2</li>
</ol>
</section>
<section>
<h2>Form Elements</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer class="container">
<p>© 2023 My Developer Profile</p>
</footer>
<script src="script.js"></script>
<script>
feather.replace()
</script>
</body>
</html>