Commit
·
57dcdc6
1
Parent(s):
8f6bd88
Update index.html
Browse files- index.html +35 -18
index.html
CHANGED
@@ -1,19 +1,36 @@
|
|
1 |
<!DOCTYPE html>
|
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 |
+
<title>DreamDrop Bot</title>
|
6 |
+
<link rel="stylesheet" href="style.css">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
|
10 |
+
<header class="header">
|
11 |
+
<h1>DreamDrop Bot</h1>
|
12 |
+
</header>
|
13 |
+
|
14 |
+
<main class="main">
|
15 |
+
|
16 |
+
<h2>Features:</h2>
|
17 |
+
|
18 |
+
<ul class="features-list">
|
19 |
+
<li>Generates images based on text input</li>
|
20 |
+
</ul>
|
21 |
+
|
22 |
+
<a href="#" target="_blank" class="button">Learn More!</a>
|
23 |
+
|
24 |
+
</main>
|
25 |
+
|
26 |
+
<footer class="footer">
|
27 |
+
|
28 |
+
<div class= "button-container">
|
29 |
+
<a href="#" target="_blank" class= "footer-button">Link One</a>
|
30 |
+
<a href="#" target="_blank" class= "footer-button">Link Two </a>
|
31 |
+
<a href="#" target="_blank" class= "footer-button">Link Three </a>
|
32 |
+
</div>
|
33 |
+
<p>Made with love by [Your name here]</p>
|
34 |
+
|
35 |
+
|
36 |
+
</body>
|