forked from YadavAkhileshh/Alien-Invasion-Defense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
21 lines (18 loc) · 780 Bytes
/
welcome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Alien Invasion Defense</title>
</head>
<body
style="display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: black; flex-direction: column;">
<h1 style="color: rgb(9, 238, 9); font-size: 6vw; margin-bottom: 5vw;">Welcome to Alien Invasion Defense</h1>
<a href="./login/login.html" style="text-decoration: none;">
<button
style="background-color: rgb(69, 9, 165); color: white; font-size: 24px; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer;">
Get Started
</button>
</a>
</body>
</html>