-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
175 lines (158 loc) · 3.23 KB
/
Copy pathindex.html
File metadata and controls
175 lines (158 loc) · 3.23 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<title>Micah Rice UW Projects</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
header {
background-color: #426;
padding: 30px;
text-align: center;
font-size: 35px;
color: white;
}
/* Container for flexboxes */
section {
display: -webkit-flex;
display: flex;
}
/* Style the navigation menu */
nav {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
background: #ccc;
padding: 20px;
}
/* Style the list inside the menu */
nav ul {
text-align: center;
list-style-type: none;
padding: 0;
}
/* Style the content */
article {
text-align: center;
-webkit-flex: 3;
-ms-flex: 3;
flex: 3;
background-color: #f1f1f1;
padding: 10px;
}
/* Style the footer */
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
section {
-webkit-flex-direction: column;
flex-direction: column;
}
}
a {font-size: 24px}
h1 {font-size: 24px}
h3 {font-size: 22px;
text-align: justify;
}
/*header CSS styling*/
/* Add a black background color to the top navigation */
.topnav {
background-color: #213;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #d3a302;
color: white;
}
</style>
</head>
<body>
<header>
<img src="butterflynebula.png" width="640" height="360" align="left"><br><br>
<h2> University of Washington Projects by Micah R.</h2>
<h3> Currently working on a Capstone oven conversion</h3>
</header>
<div class="topnav">
<a class="active" href="">Projects</a>
<a href="https://www.uwb.edu/">UWB</a>
<a href="https://www.uwb.edu/css">CSS</a>
<a href="https://github.com/ioerrors">Dev (Micah R)</a>
</div>
<hr style="border: 2px;" />
<section>
<nav>
<ul>
<li><a href="https://ioerrors.github.io/CSS_385/webGLbuild/">Hero Objects Game
</a>
</li>
</ul>
</nav>
</section>
<hr style="border: 2px;" />
<hr style="border: 2px;" />
<section>
<nav>
<ul>
<li><a href="https://ioerrors.github.io/CSS_385//enhancedWebGLBuild">Next Generation Hero Objects Game
</a>
</li>
</ul>
</nav>
</section>
<section>
<nav>
<ul>
<li><a href="https://github.com/ioerrors/disassemblerM68k">Binary to Assembly disassembler written in Assembly for M68k
</a>
</li>
</ul>
</nav>
</section>
<section>
<nav>
<ul>
<li><a href="https://github.com/ioerrors/capstoneProject2021/kanboard">kanboard
</a>
</li>
</ul>
</nav>
</section>
<section>
<nav>
<ul>
<li><a href="https://github.com/ioerrors/capstoneProject2021/phpmyadmin">phpmyadmin
</a>
</li>
</ul>
</nav>
</section>
<hr style="border: 2px;" />
</body>
</html>