-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hamster Clicker</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="profile">
<img src="https://yt3.googleusercontent.com/a/default-user=s100-c-k-c0x00ffffff-no-rj" alt="Avatar" class="avatar">
<div class="user-info">
<h2>AchClicker</h2>
</div>
</div>
<div class="income">
</div>
</div>
<div class="game-area">
<div class="score-board">
<img src="https://img.freepik.com/free-vector/dollar_53876-25498.jpg?t=st=1720354116~exp=1720357716~hmac=883a12623560c5e7fbb76ecf76fccc87180cde234d65c23116c63f1dd244552e&w=826" alt="Coin" class="coin-icon">
<span id="score">0</span>
</div>
<img src="https://lh3.googleusercontent.com/pw/AP1GczMGJdjh4kTEAC67AaNSLOGmKIkpzsi5QuQjdKeWj1f5M9CTxWErmFn6OtwHBpOb_fCFu-bC5y-9McxaW-4r4LV8G3RfimMaa772W-86nwQnG46AkJzb9LOP5SAw-6nqvxeEmVSsZSB_EVpUbEEgd69O=w640-h640-s-no-gm?authuser=0" id="hamster" alt="Hamster" class="hamster-img">
</div>
<div class="energy-boost">
<div class="energy">
Энергия: <span id="energy">3000/3000</span>
</div>
<div class="Буст">
<button class="boost-button">Boost</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>