-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (51 loc) · 1.93 KB
/
Copy pathabout.html
File metadata and controls
55 lines (51 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About the Authors</title>
</head>
<body>
<!--Nav bar-->
<header>
<nav style="font-weight: bold">
<ul>
<li><a href="./index.html">NFL History</a></li>
<li><a href="./records.html">NFL Records</a></li>
<li><a href="./about.html">About the Authors</a></li>
</ul>
</nav>
<h1 style="text-align: center; font-weight: bold; font-size: 40px; color: #fff">ABOUT THE AUTHORS</h1>
</header>
<!-- Main text -->
<main>
<section>
<h1 style="text-align: center;">Construction of User Interfaces</h1>
<h1 style="text-align: center;">Professor Abraham Aldaco</h1>
<h1 style="text-align: center;">10/20/2024</h1>
</section>
<div class="container">
<h2 style="text-align:left; margin-left: 60px;">
Conner Beckstrand
<span style="float:right; margin-right: 60px;">
Danny Piller
</span>
</h2>
<h2 style="text-align:left;">
<span style="font-size: inherit; margin-left: 60px;">connerb7@iastate.edu</span>
<span style="float: right; font-size: inherit; margin-right: 60px;">dpiller@iastate.edu</span>
</h2>
</div>
</main>
<!--Footer-->
<footer>
<div class="container">
<p class="float-end mb-1"></p>
<p class="mb-1">Daniel Piller Conner Beckstrand</p>
<p class="mb-1">dpiller@iastate.edu connerb7@iastate.edu</p>
<p class="mb-0">10/20/2024</p>
</div>
</footer>
</body>
</html>