-
Notifications
You must be signed in to change notification settings - Fork 0
/
morepage.html
81 lines (67 loc) · 1.59 KB
/
morepage.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
<!DOCTYPE html>
<html lang="en-UK">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Testing Range 2nd Page</title>
<style>
body {
background-color: darkslategrey;
}
h2 {
color: darkslategrey;
}
h2:hover {
color: slateblue;
}
.centered {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
q {
color: yellow;
font-family: verdana;
border: 2px solid goldenrod;
padding: 5;
margin: 50px;
}
a:link {
color: red;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: green;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: greenyellow;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body style="background-color:slategrey;">
<h2 class="centered">Some more links trickery (colors)</h2>
<br>
<a href="/index.html" title='Page 1: /index.html'class='centered'>
<p>
<img src="MacFolderPhoto.png" alt="Little Pic" style="float:right;width:20px;height:20px;">
Hello world, here's a pic
</p>
</a><br>
<img src="assets/BNWImage.jpg" style="width:80%;height:auto;" class="centered" alt="Unsplash Image">
<br><br><br>
<hr>
<br><br><button onclick="document.location='index.html'">Back to Page 1</button>
<br>
</body>
</html>