-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTMLpractice1_copy.html
87 lines (61 loc) · 1.05 KB
/
HTMLpractice1_copy.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
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color:#000000;
}
p2 {
text-align: center;
font-size: 100%;
color: white;
border: 10px solid powderblue;
}
p3 {
text-align: center;
font-size: 100%;
color: white;
border: 15px solid powderblue;
}
header {
text-align: center;
}
p1 {
text-align: center;
font-size: 300%;
color: white;
}
#navigation {
font-family: Times New Roman;
font-size: 100%;
color: white;
}
</style>
<title>HTML Practice2</title>
<meta charset="UTF-8">
</head>
<body>
<header>
<p1>
Test Site
</p1>
</header>
<nav id="navigation>
<p>About Home Contact Us References</p>
</nav>
<p>
<img src="One-Page Backdrop Edited.jpg" alt="Image Unavailable">
</p>
<p2><br>
Hello, this is test1 text for "p1". Thank you for understanding.<br><br>
</p2>
<p2>
<q>
This is test2 for "p1". This is to test quoting element in HTML doc with external css styling<br><br>
</q>
</p2>
<p3>
This is test1 for "p3". This is supposed to be at the center and twice in size for the font.
</p3>
</body>
<html>