-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts-and-text-styles.html
executable file
·62 lines (53 loc) · 1.04 KB
/
fonts-and-text-styles.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
<html>
<head>
<title>Pi Web Server</title>
<style type="text/css">
body{
font-family: sans-serif;
}
h1{
color:red;
font-size: 42px;
font-family: monospace;
font-style: italic;
font-variant: small-caps;
font-weight: 400;
border-style: solid;
border-radius: 1px;
border-color: green;
}
p{
text-decoration: none;
font-weight: bold;
}
a:link{
color: green;
background-color: yellow;
text-decoration: none;
}
a:hover{
color: purple;
text-decoration: underline overline;
background-color: lightgreen;
}
a:visited {
color: green;
}
img:hover{
border-style: solid;
border-radius: 1px;
border-color: green;
}
</style>
</head>
<body>
<h1>This is my heading</h1>
<p>
This is my first paragraph - look at the font and text styling applied to this page
<br/>
<br/>
<a href="#">This is a link - but I don't actually go anywhere - mouseover to see a style change</a>
</p>
<img src="Raspberry_Pi_Logo_256.png" />
</body>
</html>