-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
54 lines (41 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/style.scss" />
<link rel='shortcut icon' type='image/x-icon' href="image/favicon.png"/>
<title>Pig Game</title>
<script src="https://kit.fontawesome.com/fdbc6c58ce.js" crossorigin="anonymous"></script>
</head>
<body id='particles-js'>
<main>
<section style='margin-left: -100px' class="player player--0 player--active">
<h2 class="name" id="name--0">بازیکن اول</h2>
<p class="score" id="score--0">0</p>
<div class="current">
<p class="current-label">امتیاز</p>
<p class="current-score" id="current--0">0</p>
</div>
</section>
<section style='margin-right: -100px' class="player player--1">
<h2 class="name" id="name--1">بازیکن دوم</h2>
<p class="score" id="score--1">0</p>
<div class="current">
<p class="current-label">امتیاز</p>
<p class="current-score" id="current--1">0</p>
</div>
</section>
<img src="image/dice-5.png" alt="Playing dice" class="dice" />
<button class="btn btn--new"><i class="fa-solid fa-retweet"></i> شروع مجدد</button>
<button class="btn btn--roll"><i class="fa-solid fa-dice"></i> چرخش تاس</button>
<button class="btn btn--hold"><i class="fa-solid fa-pause"></i> توقف</button>
</main>
<a class='my-link' href='https://parsa-firoozi.ir/' >
<i class="fa-solid fa-p"></i>
</a>
<script src="http://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>