Spaces:
Running
Running
Update index.html
Browse files- index.html +33 -19
index.html
CHANGED
@@ -1,19 +1,33 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Responsive Design</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<!-- Sticker Menu -->
|
11 |
+
<div class="sticker-menu">
|
12 |
+
<span>Sticker Menu</span>
|
13 |
+
</div>
|
14 |
+
|
15 |
+
<!-- Left Sidebar -->
|
16 |
+
<div class="sidebar">
|
17 |
+
<h2>Links</h2>
|
18 |
+
<ul>
|
19 |
+
<li><a href="#">Link 1</a></li>
|
20 |
+
<li><a href="#">Link 2</a></li>
|
21 |
+
<li><a href="#">Link 3</a></li>
|
22 |
+
</ul>
|
23 |
+
</div>
|
24 |
+
|
25 |
+
<!-- Main Frame -->
|
26 |
+
<div class="main-frame">
|
27 |
+
<h1>Main Content</h1>
|
28 |
+
<p>This is some sample text.</p>
|
29 |
+
</div>
|
30 |
+
|
31 |
+
<!-- JavaScript is not needed for this example, but you can add it here if needed -->
|
32 |
+
</body>
|
33 |
+
</html>
|