-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprevention.html
executable file
·62 lines (60 loc) · 1.92 KB
/
prevention.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>
<link rel="stylesheet" href="styles/styles.css" type="text/css"/>
<title>
prevention
</title>
</head>
<body>
<header>
<h1>
Fire Safety
</h1>
</header>
<nav>
<ul>
<li>
<a href="index.html">
Response
</a>
</li>
<li>
<a href="prevention.html">
Prevention
</a>
</li>
</ul>
</nav>
<section id="main">
<article>
<h2>
prevention
</h2>
<img src="images/house-on-fire.jpg">
<blockquote>
Home fires suck because they make your insurance go up LIKE CRAZY! You don't want to be there. Additionally, fires hurt and mess up your stuff. You might accidentally kill your family! Here are some ways that you can prevent fires in your home.
</blockquote> <!--shall we put the <ul> here? or outside of the paragraph?-->
<p> Common Causes of Residential Fires:</p> <!--shall we make this another H tag? -->
<ul>
<li> Excess lint in the dryer</li>
<li> Overlapping electronic cables</li>
<li> Open flames near window treatments </li>
<li> Unattended stoves </li>
<li> Frozen foods in deep fryers </li>
</ul>
<iframe width="854" height="480" src="https://www.youtube.com/embed/KUOD8SaNblE" frameborder="0" allowfullscreen></iframe>
<iframe width="640" height="360" src="https://www.youtube.com/embed/IP3qh6Qym40" frameborder="0" allowfullscreen></iframe>
<ul>
<li>Fire blanket & extinguishers</li>
<li>Fire department contact info</li>
<li>Have a plan</li>
</ul>
</article>
</section>
<footer>
<p>Our non-profit name</p>
</footer>
</body>
</html>