-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (90 loc) · 4.28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Built with JavaScript and leaflet.js." />
<meta property="og:title" content="Mapty App | NourEgy" />
<meta property="og:description" content="Built with JavaScript and leaflet.js" />
<meta property="og:image" content="./imgs/maptyapp-NourEgy-screenshot.png" />
<meta property="og:url" content="https://twitter.com/iNourEgy" />
<meta name="author" content="NourEgy" />
<meta name="keywords" content="Mapty App, jonas schmedtman, NourEgy, HTML, CSS, JAVASCRIPT, PROJECTS" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Mapty App | NourEgy" />
<meta name="twitter:site" content="@https://twitter.com/iNourEgy" />
<meta name="twitter:description" content="Built with JavaScript and leaflet.js" />
<meta name="twitter:image" content="./imgs/maptyapp-NourEgy-screenshot.png" />
<meta name="twitter:image:alt" content="Mapty App screenshot" />
<!-- Fonts -->
<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=Cairo:wght@700;900&family=Open+Sans:wght@600;700&family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./imgs/favicon.png" type="image/x-icon" />
<!-- PAGE TITLE -->
<title>mapty // Map your workouts</title>
<!-- CSS Styles -->
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
<link rel="stylesheet" href="css/main.css" />
<!-- Scripts -->
<script defer src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script>
<!-- <script defer src="other.js"></script> -->
<script defer src="main.js"></script>
</head>
<body>
<!-- Start Main -->
<div id="main">
<!-- Start Sidebar -->
<div class="sidebar">
<img src="./imgs/logo.png" alt="Logo" class="logo" />
<ul class="workouts">
<form class="form hidden">
<div class="form__row">
<label class="form__label">Type</label>
<select class="form__input form__input--type">
<option value="running">Running</option>
<option value="cycling">Cycling</option>
</select>
</div>
<div class="form__row">
<label class="form__label">Distance</label>
<input class="form__input form__input--distance" placeholder="km" />
</div>
<div class="form__row">
<label class="form__label">Duration</label>
<input
class="form__input form__input--duration"
placeholder="min"
/>
</div>
<div class="form__row">
<label class="form__label">Cadence</label>
<input
class="form__input form__input--cadence"
placeholder="step/min"
/>
</div>
<div class="form__row form__row--hidden">
<label class="form__label">Elev Gain</label>
<input
class="form__input form__input--elevation"
placeholder="meters"
/>
</div>
<button class="form__btn">OK</button>
</form>
</ul>
<!-- Restart App -->
<button type="button" class="restart">Restart All</button>
<!-- copyright -->
<p class="copyright"> © Mapty. <span id="year"></span> <a class="twitter-link" target="_blank" href="https://twitter.com/iNourEgy">NourEgy</a> and <a class="twitter-link" target="_blank" href="https://twitter.com/jonasschmedtman">Jonas Schmedtmann</a>. Use for learning And portfolio.</p>
</div> <!-- End Sidebar -->
<!-- Display Map -->
<div id="map"></div>
<!-- Display Messages -->
<div class="message"></div>
</div><!-- End Main -->
</body>
</html>