-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (73 loc) · 2.77 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Prompt&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/styles.css">
<script src="https://kit.fontawesome.com/f3e33d9ac3.js" crossorigin="anonymous"></script>
<title>A Battle of Wits and Clicks!</title>
</head>
<body>
<main>
<!-- main heading goes here-->
<header>
<h1>A Battle of Wits <span>and Clicks!</span></h1>
</header>
<main>
<!-- adding a popup alert on page load (if proxy server misbehaves) -->
<!-- <div class="popup">
<button class="close-popup" id="close">×</button>
<h2>Note:</h2>
<p>
The Evil Insult API is temporarily unavailable. Please enjoy advising each other into oblivion instead!
</p>
</div> -->
<!--the site wil be divided into three main columns, 1. for left person, 2. middle speech bubbles and buttons, 3. person 2-->
<div class="entirePage">
<!--left person stuff starts here-->
<div class="leftPerson">
<div class="leftPersonImage">
<!--left person image goes here-->
<img id="leftPersonImage">
</div>
</div>
<!--middle speech bubble stuff-->
<div class="middle" id="middle">
<div class="welcome" id="welcome">
<h2>Hello and welcome to the game!</h2>
<h2>You can choose to be a real jerk and insult each other, or give each other positive, helpful advice!
</h2>
<h2>Choose wisely!</h2>
<h2>Left player starts.</h2>
</h2>
</div>
<div class="buttonBox startButtonBox" id="startButtonBox">
<!-- Game Start button -->
<button class="startButton" id="startButton">Start!</button>
</div>
</div>
<!--right person stuff starts here-->
<div class="rightPerson">
<div class="rightPersonImage">
<!--right person image goes here-->
<img id="rightPersonImage">
</div>
</div>
</div>
</main>
<!-- Add a script tag for the file we'll write our JS in -->
<script type="module" src="js/script.js"></script>
<footer>
<div class="authors">
<h3>copyright Chribbyland and Juno College 2023</h3>
</div>
<div class="info">
<!--nice to have, a question mark icon that opens up a comment? that gives credit to API creators-->
</div>
</footer>
</body>
<html>