forked from kbalog/uis-dat310-spring2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.html
39 lines (31 loc) · 829 Bytes
/
fonts.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
<!DOCTYPE html>
<html>
<head>
<title>Example: Fonts</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Roboto);
h1 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 2em;
color: #00ff00;
}
h2 {
font-family: "Roboto", sans-serif;
font-size: 16pt;
}
h3 {
font-size: medium;
color: red;
}
</style>
</head>
<body>
<h1>Header text</h1>
<h2>Second header</h2>
<h3>Third header</h3>
<p style="text-align: right;">Right aligned text</p>
<p style="color: #ff0000;">Red text</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras a <span
style="text-decoration: line-through;">maximus</span> diam.</p>
</body>
</html>