-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (84 loc) · 2.93 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Habits controller.</title>
<meta
name="description"
content="Small application for controlling your bad or good habits."
/>
<meta property="og:title" content="Habits navigator." />
<meta
property="og:description"
content="Small application for controlling your bad or good habits."
/>
<meta
property="og:url"
content="https://marcelina-hasiak.github.io/habits-controller/"
/>
<meta
property="og:image"
content="https://marcelina-hasiak.github.io/habits-controller/src/img/application-visualisation.png"
/>
<link
href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@700&family=Amatic+SC:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="./src/styles/normalize.css" rel="stylesheet" />
<link href="./src/styles/style.css" rel="stylesheet" />
<link href="./favicon.png" rel="shortcut icon" />
</head>
<body class="application">
<article
class="application__content application__content--js application__content--mini"
>
<header class="application__header">
<div class="heading">
<h1 class="heading__title">Habits controller</h1>
<blockquote class="heading__quote">
<p>
'Routine keeps me in line, helps me pass the time and concentrate
my mind.'
</p>
</blockquote>
</div>
<div class="search-form">
<p class="search-form__wrapper">
<label class="search-form__habit-title" for="search-habit">
Type a new habit which you want to track or load one. If you
succssed, tick the checkbox next to date.
</label>
<input
class="search-form__habit-input search-form__habit-input--js"
type="search"
list="saved-habits"
id="search-habit"
/>
<datalist
class="search-form__habit-list search-form__habit-list--js"
id="saved-habits"
>
</datalist>
</p>
<div class="search-form__buttons-wrapper">
<button
class="search-form__remove-habit-button search-form__delete-habit-button--js"
>
Remove
</button>
<button
class="search-form__add-habit-button search-form__add-habit-button--js"
>
Go!
</button>
</div>
</div>
</header>
<section
class="application__body application__body--js application__body--hidden"
></section>
</article>
<script src="src/js/index.js" type="module"></script>
</body>
</html>