-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (132 loc) · 5.29 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ECE 461 Final Project</title>
<style>
/* Style the font of the header */
#language {
position: absolute;
top: 0;
left: 0;
font-size: 20px;
font-weight: bold;
padding: 5px;
background-color: #f9daff;
}
h1 {
font-size: 55px; /* Change the font size to 36px */
font-family: "Comic Sans MS", cursive, sans-serif;
margin-top: 5px; /* Add some margin to the top */
margin-bottom: 5px; /* Add some margin to the bottom */
text-align: center; /* Center the text */
}
h2{
font-size: 35px; /* Change the font size to 36px */
font-family: "Comic Sans MS", cursive, sans-serif;
margin-top: 30px; /* Add some margin to the top */
margin-bottom: 20px; /* Add some margin to the bottom */
text-align: left; /* Center the text */
}
a{
display: inline-block;
padding: 10px;
border-radius: 20px;
background-color: white;
border: 2px solid black;
font-size: 35px; /* Change the font size to 36px */
font-family: "Comic Sans MS", cursive, sans-serif;
margin-top: 10px; /* Add some margin to the top */
margin-bottom: 10px; /* Add some margin to the bottom */
text-align: left; /* Center the text */
}
/* Style the logo */
#logo {
display: block; /* Set the display property to block */
margin: 0 auto; /* Center the image horizontally */
width: 150px; /* Set the width to 100px */
height: 150px; /* Set the height to 100px */
margin-bottom: 10px; /* Add some margin to the bottom */
}
/* Style the header container */
header {
text-align: center; /* Center the header text */
}
input {
font-size: 24px; /* Change the font size to 24px or any other size you prefer */
font-family: "Comic Sans MS", cursive, sans-serif; /* Change the font family to Comic Sans */
}
label {
font-size: 34px; /* Change the font size to 24px or any other size you prefer */
font-family: "Comic Sans MS", cursive, sans-serif; /* Change the font family to Comic Sans */
}
div {
font-size: 22px; /* Change the font size to 24px or any other size you prefer */
font-family: "Comic Sans MS", cursive, sans-serif; /* Change the font family to Comic Sans */
}
body {
background-color: #f9daff; /* Update background color to be the 4.5:1 per compliance */
color: #000000;
}
button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
/* Style the footer container */
footer {
position: absolute; /* Set the position property to absolute */
left: 0; /* Set the left property to 0 */
bottom: 0; /* Set the bottom property to 0 */
width: 100%; /* Set the width to 100% */
text-align: center; /* Center the text */
margin-top: 100px; /* Add some margin to the top */
margin-bottom: 100px; /* Add some margin to the bottom */
margin-left: 400px; /* Add some margin to the top */
margin-right: 100px; /* Add some margin to the bottom */
}
/* Style the GIF */
#gif {
display: block; /* Set the display property to block */
margin: 0 auto; /* Center the image horizontally */
width: 200px; /* Set the width to 200px */
height: 200px; /* Set the height to 200px */
margin-top: 100px; /* Add some margin to the top */
margin-bottom: 100px; /* Add some margin to the bottom */
}
</style>
</head>
<body>
<img src="languageFlag.png" alt="English language icon" title="English language icon" width="16" height="16">
<span style="font-size: 20px">English</span>
<header role="banner">
<h1>ECE 461 Final Project</h1> <!-- Add the header -->
</header>
<img id="logo" src="purdueLogo.png" alt="Computer Cartoon" title="Purdue University ECE logo"> <!-- Add title for compliance -->
<h2>File Upload</h2>
<a href="upload.html">UPLOAD PACKAGE HERE</a>
<h2>Update a Package</h2>
<a href="deletePackage.html">DELETE PACKAGE HERE</a>
<h2>Get the rate of a Package</h2>
<a href="rate.html">GET RATE HERE</a>
<h2>Database Search</h2>
<a href="search.html">SEARCH OUR DATABASE HERE</a>
<h2>See Full Directory</h2>
<a href="directory.html">SEE CURRENT DIRECTORY HERE</a>
<h2>Reset Directory</h2>
<a href="reset.html">RESET DIRECTORY HERE</a>
<main>
<footer role="contentinfo">
<div style="width:1240px;height:0;padding-bottom:200px;position:relative;">
<iframe src="https://giphy.com/embed/MT5UUV1d4CXE2A37Dg" width=200px height=200px style="position:absolute" frameBorder="0" class="giphy-embed" allowFullScreen title="This is a moving image of a Computer Dancing. The computer says ANALYZE THIS" ></iframe>
</div>
<div style="text-align: center;">
</footer>
</body>
</html>