-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 1.64 KB
/
index.html
File metadata and controls
78 lines (77 loc) · 1.64 KB
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
<!DOCTYPE html>
<!-- Created by Emmet Stanevich on 9/13 -->
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Emmet Stanevich's Home Page</title>
<link rel="stylesheet" href="styles/stylesheet1.css">
<!--<style>
body{
background-color:#414176;
}
h1{
font-family:"Comic Sans MS",serif;
text-align:center;
color:#DAB76C;
}
img{
text-align:center;
}
h2{
font-family:"Comic Sans MS",serif;
color:#DAB76C;
}
h3{
color:#DAB76C;
}
p{
color:#DAB76C;
}
a{
color:#DAB76C;
}
hr{
border-width:0px;
height:10px;
background-color:#DAB76C;
}
</style>-->
</head>
<body>
<ul class="topnav">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="cosc231/index.html">COSC 231</a></li>
<li><a href="images/index.html">Images</a></li>
<li class="right"><a href="cosc231/AboutMe3.html">About Me</a></li>
</ul>
<div class="main">
<h1>Welcome</h1>
<h3 style="text-align:center">to</h3>
<h2>Emmet Stanevich's Web page</h2>
<hr>
<br>
<p style="text-align:center"><img src="images/selfie.jpg" alt="Picture of Emmet Stanevich" width="200" style="transform:rotate(270deg);"></p>
<br>
<h3>Subpages:</h3>
<ul>
<li><a href="cosc231/index.html">COSC 231</a></li>
<li><a href="images/index.html">Images</a></li>
</ul>
<br>
<h3>My Favorite Links:</h3><!-- Randomly selected list, subject to change -->
<ul>
<li><a href="https://www.google.com">Google Search</a></li>
<li><a href="https://my.emich.edu">my.emich.edu</a></li>
<li><a href="https://www.youtube.com">Youtube</a></li>
</ul>
<br>
<p>Thank you for visiting, bye!</p>
<p>Last updated: 10/8/2018</p>
<br><br>
<h3>Image Credits:</h3>
<ol>
<li><a href="images/selfie.jpg">Photo of Emmet Stanevich</a></li>
</ol>
</div>
</body>
</html>