-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (29 loc) · 984 Bytes
/
index.html
File metadata and controls
47 lines (29 loc) · 984 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Examples</title>
<!-- Link to the CSS file we will be styling our document with. -->
<link REL=StyleSheet HREF="style.css" TYPE="text/css" />
<!-- Internal stylesheet example. -->
<style>
#internal{
color: orange;
font-size: 4em;
}
</style>
</head>
<body>
<p>normal</p>
<p class="larger_font">font-size = xx-large</p>
<p class="blue">font-color = blue</p>
<p class="underline">text-decoration = underline</p>
<p class="comic_sans">font-family = comic sans ms</p>
<p class="center">text-align = center</p>
<div id="box_model"></div>
<a id="custom_link" href="#">custom link</a>
<p id="internal">internal style</p>
<!-- Inline style example. -->
<p style="text-align:right; text-transform: uppercase;">inline style</p>
</body>
</html>