-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro-screen.html
34 lines (34 loc) · 1.43 KB
/
intro-screen.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Bungee&family=Goldman:wght@700&family=Orbitron:wght@800&family=Righteous&family=Teko:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Pokemon Battles</title>
</head>
<body>
<div class="display__intro">
<h1 class="display__intro-title">POKEMON BATTLE CONSOLE</h1>
<div class="display-images">
<div class="display__intro-pokeball"></div>
<div class="display__intro-arena-circle"></div>
</div>
<div class="display__intro-grass">
<p class="press-start-title">[ Press Start ]</p>
<div class="press-start">
<p class="press-start_play"><span class="arrow arrow--blink arrow--selected">►</span>play</p>
<p class="press-start_menu"><span class="arrow arrow--blink">►</span>menu</p>
</div>
</div>
<p class="copyright-text">All Pokemon are owned by The Pokémon Company.</p>
<p class="copyright-text">Designed & Coded by Drake Nguyen 2022</p>
</div>
</div>
</body>
</html>