forked from rbunge-nsc/websitedemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
falls.html
50 lines (38 loc) · 1.03 KB
/
falls.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
<!DOCTYPE html>
<html>
<head>
<title>Behold Nature's Beauty!</title>
<style>
h1{
color: pink;
font-kerning: auto;
}
h2{
color:blueviolet;
}
img{
border: 5px green solid; /*This is a border style that changes the border-->*/
margin: 0 0 20px 30px; /*top, right, bottom , left*/
padding: 20px;
background-color:greenyellow;
}
</style>
<link rel="stylesheet" type="text/css" href="styles/branchlevel.css">
</head>
<script src="scripts/myscripts.js"></script>
<body>
<h1>The Sparkling Waters</h1>
<figure>
<img src = "images/waterfall.jpg" alt="Ranger Falls" onmouseover="showAlt(this)" onmouseout="hideAlt(this)">
<figcaption>Take in the Scenery</figcaption>
</figure>
<p id="alttext" style="font-size:50px"> </p>
<h2>
We are in the fall page!
</h2>
<ul>
<li><a href="index.html">Table of Contents</a></li>
<li><a href = "aboutSophia.html">Take me to Sophia's Home</a></li>
</ul>
</body>
</html>