This repository has been archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.66 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
<!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">
<title>PS Trophy Creator site</title>
<!-- <title>PS Trophy Creator</title> -->
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/icon.png">
<link href="https://fonts.googleapis.com/css?family=Azeret+Mono:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic" rel="stylesheet"/>
</head>
<body>
<div class="container">
<div class="mainbox">
<h2 class="title">PS Trophy Creator</h2>
<form>
<p>Name Trophy</p>
<input id="trophynameInp" type="text">
<p>Trophy Type</p>
<select id="trophytype" >
<option value="Bronze">Bronze</option>
<option value="Silver">Silver</option>
<option value="Gold">Gold</option>
<option value="Platinum">Platinum</option>
</select>
<button type="button" id="mainbutton" class="mainbutton">Take Trophy!</button>
</form>
</div>
<div class="trophyIcon" id="trophyIcon">
<img src="#" id="trophyImg" class="trophytypeImg" alt="trophy">
<div>
<!-- <p>You have earned a trophy!</p> -->
<p>Trophy earned!</p>
<h2 class="trophyName" id="trophyName"></h2>
</div>
</div>
</div>
<script src="mainscript.js"></script>
</body>
</html>