-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
67 lines (59 loc) · 2.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en" class="notranslate" translate="no">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google" content="notranslate">
<meta name="viewport" content="width=device-width">
<title>Bakery Battle</title>
<link rel="stylesheet" href="./css/style_front.css">
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<h1>BAKERY BATTLE</h1>
</nav>
</header>
<main>
<div class="main-header">
<div class="enemies">
<span class="enemy_muf" id="enemyImg">
<img class="enemy_muf_gif" src="./img/Muffin-Boss-Front.gif" alt="Da Muffin">
</span>
<span class="enemy_mul" id="enemyImg2">
<img class="enemy_mul_gif" src="./img/Multi-Front.gif" alt="Multi">
</span>
<span class="enemy_mil" id="enemyImg3">
<img class="enemy_mil_gif" src="./img/Milky-Front.gif" alt="Milky">
</span>
</div>
<div class="welcome_text">
<h2>Greetings, Mighty Baker!</h2>
<h3>The rules are simple:</h3>
<h4>You better burn 'em all or be bitten.</h4>
<h4>It's like Tic-Tac-Toe but tastier!</h4>
</div>
<div class="the_start_button">
<a href="./pages/en.html" class="start_btn"><b>Start the game not troubles</b></a>
<div class="notice">
<h4>And don't trust the Muffs!</h4>
</div>
</div>
</div>
</main>
<footer>
<div class="lang-buttons">
<a class="eng-btn" href="./index.html"><b>English</b></a>
<a class="ch-btn" href="./pages/ch_front.html"><b>中文</b></a>
<a class="ru-btn" href="./pages/ru_front.html"><b>Русский</b></a>
</div>
<a href="https://github.com/theomorphic" target="_blank" class="autor"><b>theomorphic 2022</b></a>
</footer>
</body>
</html>