forked from margarita2104/group-6-health
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fitness tracker</title>
<link href="./css/normilize.css" rel="stylesheet">
<link href="./css//bootstrap-grid.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
<link href="./css/style.css" rel="stylesheet">
<link href="./css/media.css" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="container">
<div class="row align-items-center justify-content-center">
<time class="intro-page__time" id="currentDate">
</time>
<h2 class="intro-page__greeting">
Hello!
</h2>
<img class="intro-page__img" src="./img/intropage-img.png" alt="Woman meditates">
<h1 class="intro-page__header">
Are you ready to start your fitness journey?
</h1>
<a href="fitness-tracker/index.html" class="intro-page__link">Start here</a>
</div>
</div>
</header>
<script src="./index.js"></script>
</body>
</html>