-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags for character set and viewport settings -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the web application -->
<title>ezFin - Learning Finance Made Easy</title>
<!-- Import Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<!-- Import CSS styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header section containing the logo and navigation -->
<header>
<div class="logo-container">
<!-- Display the EzFin logo -->
<img src="EzFin Images/name.png" alt="ezFin Name" class="name">
</div>
<nav>
<!-- Navigation button for FAQ -->
<a href="#" class="faq-button">FAQ</a>
</nav>
</header>
<!-- Main content section -->
<main>
<div class="content">
<!-- Main heading with highlighted text -->
<h1><span class="light-blue">Learning finance,</span> <span class="dark-blue">made easy.</span></h1>
<!-- Subheading with description -->
<p>Set yourself up financially by learning about budgeting, saving and investing, and the economy with <span class="light-blue">ez</span><span class="dark-blue">Fin</span></p>
<!-- Buttons for signing up and logging in -->
<div class="buttons">
<a href="dashboard.html" class="sign-up-button">sign up</a>
<span>or </span>
<a href="dashboard.html" class="log-in-button">log in</a>
</div>
</div>
</main>
<!-- Footer section containing the waves banner -->
<footer>
<img src="EzFin Images/start_page_waves.png" alt="Waves Banner" class="waves-banner">
</footer>
</body>
</html>