-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Ireland Financial Simulator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="landing/styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<link rel="icon" type="image/x-icon" href="ifs/IFS.ico">
</head>
<body>
<div class="container">
<h1>Welcome to the Ireland Financial Simulator</h1>
<img src="landing/IFS.png" class="logo" alt="Logo">
<div class="button-container">
<a href="ifs">Access the Simulator</a>
<a href="#" id="registerButton" class="register-button" style="min-width: 170px;">Register for Updates</a>
</div>
<div class="form-container" id="formContainer">
<input type="text" id="name" placeholder="Your Name">
<input type="email" id="email" placeholder="Your Email">
<button id="submitButton">Submit</button>
</div>
<div class="thank-you-message" id="thankYouMessage" style="display: none;">Thank you for registering! I will keep you updated.</div>
</div>
<script type="module" src="landing/script.js"></script>
</body>
</html>