-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation1.html
More file actions
47 lines (46 loc) · 875 Bytes
/
presentation1.html
File metadata and controls
47 lines (46 loc) · 875 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>
<html lang="en">
<head>
<link rel="stylesheet" href="css/presentation1css.css">
<meta charset="UTF-8">
<title>Presentation</title>
</head>
<body>
<div class="specificClass">
This background should be red using specific class.
</div>
<h1>
This text should be blue using h1 element
</h1>
<!--AMANDA-->
<h1 id="thisIsAnId">
This text should purple using an id.
</h1>
<!--inline styling-->
<!--applied directly to html tag using the style attribute-->
<h1 style="color:blue;text-align:center;">Inline styling</h1>
<p style="color:red;">Inline color red</p>
<!-------------->
<article>
This will not be yellow
</article>
<p>
This should be yellow
</p>
<p>
This will not be yellow
</p>
<div class="gold-color">
This will be gold
</div>
<p>
This will be purple
</p>
<p>
This will be purple
</p>
<p>
This will be purple
</p>
</body>
</html>