This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Weedev - The Game.
</title>
<link rel="stylesheet" href="https://use.typekit.net/pod4ykk.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="shortcut icon" href="./img/Logo.png" type="image/png" />
</head>
<body>
<div class="split website"></div>
<div class="split game">
<h1 class="title">
Weedev - The Game.
</h1>
<div class="player-info">
<div class="char">
<div class="playerchar">
<p class="playerChar">0 Char.</p>
<p class="playerCPS">0 CPS</p>
</div>
<p class="submitInfo">This will be cost 0 character.</p>
</div>
<p class="playerMoney">0$</p>
<div class="playerAllLevel">
<p class="playerLevel"></p>
<div class="progressBarLvl">
<div class="actualXP"></div>
</div>
</div>
</div>
<div class="playerMenu">
<form class="btnSelection"></form>
<div class="formDiv">
<form>
<textarea
type="text"
name="text"
class="text"
placeholder="Make some text here."
></textarea>
<button type="submit" class="pushBtn">Push on the webpage</button>
</form>
</div>
<div class="cssBtn"></div>
<div class="otherBtn">
<button class="submitWebpage">Submit Webpage</button>
<button class="downloadWebpage">Download Webpage</button>
</div>
</div>
<div class="shopMenu">
<div class="componant"></div>
<div class="software"></div>
</div>
</div>
<script src="./js/FileSaver.js"></script>
<script src="./js/elements.js"></script>
<script src="./js/variables.js"></script>
<script src="./js/html.js"></script>
<script src="./js/css.js"></script>
<script src="./js/playerInfos.js"></script>
<script src="./js/index.js"></script>
<script src="./js/submit.js"></script>
<script src="./js/buyitem.js"></script>
</body>
</html>