-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
75 lines (75 loc) · 1.88 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Example</title>
</head>
<body>
<span style="background-color: red">
Inline element 1
</span>
<br>
</body>
<span style="background-color: yellow">
Inline element 2
</span>
</body>
<p style="background-color: purple;">
This is some text
</p>
<a style="background-color: greenyellow;" href="https://google.com">
Anchor tag
</a>
<p style="background-color: beige;">
This is some text
</p>
<body>
<span style="background-color: red">
Inline element 1
</span>
<br>
</body>
<span style="background-color: yellow">
Inline element 2
</span>
</body>
<p style="background-color: purple;">
This is some text
</p>
<a style="background-color: greenyellow;" href="#something" >
Anchor tag 2
</a>
<p style="background-color: beige;">
This is some text
</p>
<body>
<span style="background-color: red">
Inline element 1
</span>
<br>
</body>
<span style="background-color: yellow">
Inline element 2
</span>
</body>
<p style="background-color: purple;">
This is some text
</p>
<a style="background-color: greenyellow;" href="https://google.com" id="something">
Anchor tag #something
</a>
<p style="background-color: beige;">
This is some text
</p>
<h1 style="background-color: burlywood;">
Header 1
</h1>
<h2 style="background-color: azure;">
Header 2
</h2>
<hr>
<input>
<textarea></textarea>
<button>Submit</button>
<img src="https://assets.worldwildlife.org/www-prd/images/wwfcmsprodimagesSloth__jusUyPh.2e16d0ba.format-jpeg.fill-960x540.jpg">
</html>