-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1021 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="main.css" rel="stylesheet" type="text/css" />
<title>Document</title>
</head>
<body>
<main class="main">
<section class="main-section">
<h1>Welcome to the simple element generator! </br>💫</h1>
<p class="list-paragraph">Below you can find <b>your new list</b>, just <span class="list-special">click</span> as many times as you wish or create your own list</br>⭐️</p>
<button class="add-button">
add default element
</button></br>
<form class="form">
<label for="input">Your ideas</label>
<input class="input" type="text" placeholder="type here">
<button class="input-button add-button">
save my idea
</button>
</form>
<ul class="list"></ul>
</section>
<script src="index.js"></script>
</main>
</body>
</html>