-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 950 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Light Todo App</title>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;900&display=swap" rel="stylesheet">
</head>
<body>
<div id="app">
<div class="welcome-page">
<h1 class="mb-1">Welcome to Light Todo App</h1>
<hr>
<div class="mb-1"></div>
<form onsubmit="event.preventDefault()">
<h4 class="mb-1">Enter your name</h4>
<input id="input-name" type="text" placeholder="Name" required>
<button id="button-name" type="submit" class="button">Start</button>
</form>
</div>
</div>
</body>
<script type="text/javascript" src="assets/js/index.js"></script>
</html>