-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (68 loc) · 2.23 KB
/
index.html
File metadata and controls
68 lines (68 loc) · 2.23 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADS-Chat</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: "Times New Roman", Times, serif;
}
.banner {
width: 100%;
background-color: #F9B006; /* Canary yellow */
color: white;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
}
.banner .name {
font-size: 24px;
font-weight: bold;
}
.banner .top-buttons {
display: flex;
gap: 10px;
margin-right: 20px; /* Adjust this value to move buttons further left */
}
.banner .top-buttons button {
background-color: white;
color: #F9B006; /* Canary yellow */
border: none;
padding: 10px 20px;
cursor: pointer;
}
.container {
margin-top: 60px; /* Adjust this value based on the height of your banner */
}
</style>
</head>
<body>
<div class="banner">
<div class="name">ADS-Chat</div>
<div class="top-buttons">
<button onclick="window.location.href='https://example-login.com'">Login</button>
<button onclick="window.location.href='https://example-signup.com'">Sign Up</button>
</div>
</div>
<div class="container">
<div class="logo">
<!-- Placeholder for logo -->
<img src="logo.png" alt="ADS-Chat Logo">
</div>
<h1>Welcome to ADS-Chat</h1>
<div class="buttons">
<button class="btn login-btn" onclick="window.location.href='login.html'">Login</button>
<button class="btn register-btn" onclick="window.location.href='register.html'">Register</button>
<button class="btn download-btn" onclick="window.location.href='https://download.quizzity.tech/'">Downloads</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>