-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 1.67 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<!-- MOBILE––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://api.fonts.coollabs.io/css2?family=Raleway:wght@300;400;600&display=swap" rel="stylesheet">
<!-- CSS––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/darkskelleton.css" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<div class="container">
<div class="row">
<div class="column" style="margin-top: 25%">
<h4>Template page</h4>
<hr>
<p>A small paragraph</p>
</div>
</div>
<div class="row">
<div class="one-third column">
<label for="inputrange">inputrange</label>
<input id="inputrange" type="range" name="" value="">
</div>
<div class="one-third column">
<h3>an amazing heading</h3>
<p>interesting paragraph with a bit of text and...</p>
<button type="button" name="button">some cool button</button>
<button type="button" class="button-primary" name="button">button</button>
</div>
<div class="one-third column">
<img src="images/favicon.png" class="u-max-full-width" alt="and a fun image">
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="scripts/script.js"></script>
</body>
</html>