-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 1.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WDD130 Home Page</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<h1>Welcome to WDD130 Web Projects</h1>
<nav>
<a href="aboutme/index.html">About Me Page</a>
<a href="wwr/index.html">White Water Rafting Website</a>
<a href="wwr/site-plan-rafting.html">White Water Rafting Siteplan</a>
<a href="positioning.html">Positioning Activity</a>
<a href="#">Personal Website</a>
<a href="#">Personal Siteplan</a>
</nav>
<p>Robert Patten - WDD130</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>BYUI</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<nav>
<a id="active" href="http://index.html">Home</a>
<a href="https://www.churchofjesuschrist.org">Church of Jesus Christ</a>
<a href="https://www.churchofjesuschrist.org/temples">Temples</a>
<a href="https://www.churchofjesuschrist.org/study/scriptures">Scriptures</a>
</nav>
</header>
<main>
<h1>Brigham Young University Idaho</h1>
<img src="https://www.byui.edu/images/service-sites/map-banner.jpg">
<p class='main-para'>BYU-Idaho is a comfortable place to learn and grow as a disciple of Jesus Christ because students, faculty, and employees share a commitment to live the gospel.</p>
</main>
<footer>
<p>My Web Page 20XX ©</p>
font-size: 20px;
margin: 20px auto;
</footer>
</body>
</html>