-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfalse.html
48 lines (45 loc) · 2.44 KB
/
false.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page - Student Deals</title>
</head>
<body>
<header>
<h1 style="text-align: center; color: darkred;">Sophia Foltz</h1>
<p style="text-align: center; color: darkred;">Date: 2024-11-05</p>
<p style="text-align: center; color: darkred;">Assignment: Create and Validate HTML Website Assignment</p>
</header>
<nav style="background-color: darkred; text-align: center; padding: 10px;">
<h2>Welcome to Our University</h2>
<img src="SCGamecock.png" alt="University Logo" width="70" height="50" style="margin-right: 20px;">
<a href="home.html" style="color: white; padding: 10px; text-decoration: none; font-weight: bold;">HOME</a>
<a href="about.html" style="color: white; padding: 10px; text-decoration: none; font-weight: bold;">ABOUT</a>
<a href="deals.html" style="color: white; padding: 10px; text-decoration: none; font-weight: bold;">DEALS</a>
<a href="contact.html" style="color: white; padding: 10px; text-decoration: none; font-weight: bold;">CONTACT</a>
</nav>
<main style="text-align: center; background-color: #800000; color: white; padding: 20px;">
<section>
<h2>GameCock Deals</h2>
<div>
<img src="shopping1.png" alt="Shopping" width="220" height="220" style="margin: 5px;">
<img src="shopping2.png" alt="Shopping" width="220" height="220" style="margin: 5px;">
<img src="shopping3.png" alt="Shopping" width="220" height="220" style="margin: 5px;">
</div>
<div>
<a href="#"><img src="twitter.png" alt="Twitter" width="70" height="50" style="margin: 5px;"></a>
<a href="#"><img src="facebook.png" alt="Facebook" width="100" height="70" style="margin: 5px;"></a>
<a href="#"><img src="instagram.png" alt="Instagram" width="50" height="40" style="margin: 5px;"></a>
</div>
</section>
<div style="background-color: darkred; color: white; padding: 10px; font-size: large; margin-top: 20px;">
<p>THE BEST STUDENT DEALS AND DISCOUNTS</p>
</div>
</main>
<nav>
<a href="second.html">Go to Second Page</a> |
<a href="form.html">Go to Form Page</a>
</nav>
</body>
</html>