-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 1.16 KB
/
index.html
File metadata and controls
39 lines (32 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- style
//- =========================================== -->
<link rel="stylesheet" href="./src/assets/style/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="icon" href="./src/assets/imgs/todo.ico">
<!-- meta
//- =========================================== -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS TODOt</title>
</head>
<body>
<main class="container">
<header class="header">
<span class="header__logo">js</span>
<h1 class="header__title">todo</h1>
</header>
<div class="content">
<input class="input-text" type="text" placeholder="Tell me more!!!" value="" />
<button class="btn-add">add</button>
</div>
<p class="message">Ops!!! Digita algo pra poder inserir na lista...</p>
<ol class="list"></ol>
</main>
<script src="./src/app.js"></script>
</body>
</html>