-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (50 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content=""
width="device-width,"
initial-scale="1.0"
/>
<title>min første testside</title>
<link rel="stylesheet" href="style.css"
</head>
<body>
<h1>Min første nettside</h1>
<h2>Dette er undertittelen for siden</h2>
<p>
Dette er det som kommer mellom p-tags, da vil du ha paragraf tektst som er
et lengre avsnitt med tekst
</p>
<h2>Dette avsnittet er bare tull</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorem nemo eum
saepe sit. Molestias laborum veritatis perspiciatis nobis illum ipsa in
repudiandae ducimus cumque enim! Doloremque in dolor nam numquam!
</p>
Dot{click me}
<a href="">Click me</a>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
<section id "image_l">
<img src="https://images.unsplash.com/photo-1599409209333-d0e86da90718?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="alternativ text">
<img src="https://images.unsplash.com/photo-1522069213448-443a614da9b6?q=80&w=2073&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" >
</section>
<section id="datetime">
<input type="datetime-local" name="" id="">
</section>
<button>
<input type="button" value="Trykk her">
<input type="button" value="Eller her">
<input type="button" value="Denne da?">
</button>
<!-- Spør om styling på knapper -->
</body>
</html>