forked from sophiafoltz3/ITEC362
-
Notifications
You must be signed in to change notification settings - Fork 0
/
second.html
45 lines (41 loc) · 3.01 KB
/
second.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Student Deals</title>
</head>
<body>
<!-- Header Section -->
<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>
<!-- Navigation Menu -->
<nav style="background-color: darkred; text-align: center; padding: 10px;">
<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 Content -->
<main style="background-color: #800000; color: white; padding: 20px; text-align: center;">
<!-- About Us Section -->
<section style="background-color: #A52A2A; color: white; padding: 20px; margin: 10px;">
<h2 style="text-align: center;">About Us</h2>
<p style="text-align: left; margin: 0 50px;">Our website is dedicated to helping college students take control of their finances by providing practical tools and resources. We focus on money management, debt prevention, and smart saving strategies to empower students to build a secure financial future. Whether you're looking to budget effectively, avoid unnecessary debt, or plan for long-term savings, our goal is to support you every step of the way.</p>
</section>
<!-- Deals and Discounts Section -->
<section style="background-color: #A52A2A; color: white; padding: 20px; margin: 10px;">
<h2 style="text-align: center;">Deals and Discounts</h2>
<p style="text-align: left; margin: 0 50px;">Our deals and discounts section is designed to help college students save money on everyday purchases. We partner with trusted brands and services to offer exclusive discounts on everything from textbooks and tech to dining and entertainment. Users can easily browse through current offers, redeem discount codes, and take advantage of limited-time deals tailored to their needs. With regularly updated promotions, we make it simple for students to get the best value without breaking the bank.</p>
</section>
<!-- Images Section -->
<section style="text-align: center; margin-top: 20px;">
<h2 style="display: none;">Welcome to Our University Deal Section</h2>
<img src="whiteusclogo.png" alt="Deal Image 1" width="80" height="50" style="margin: 5px;">
</section>
</main>
</body>
</html>