-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
74 lines (65 loc) · 2.57 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Razan | Rock Paper Scissors</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="fonts/font-awesome.css">
<script src="https://kit.fontawesome.com/242ab0b392.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<h2 class="logo">myWeb<span>site!</span></h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="game.html">Game</a></li>
<li><a href="quiz.html">Quiz</a></li>
<i class="fa-solid fa-cat fa-lg" style="color: #ffffff;"></i>
</ul>
</nav>
</header>
<section class="game_container">
<section class="game_box">
<div class="result_field">
<div class="result_images">
<span class="user_result">
<i class="fa-regular fa-hand-back-fist fa-rotate-90 fa-2xl" style="color: #ff1c2f;"></i>
</span>
<span class="cpu_result">
<i class="fa-regular fa-hand-back-fist fa-rotate-270 fa-2xl" style="color: #ff1c2f;"></i>
</span>
</div>
<div class="result">Let's Play!!</div>
</div>
<div class="option_images">
<span class="option_image">
<i class="fa-regular fa-hand-back-fist fa-xl" style="color: #ff1c2f;"></i>
<p>Rock</p>
</span>
<span class="option_image">
<i class="fa-regular fa-hand fa-xl" style="color: #ff1c2f;"></i>
<p>Paper</p>
</span>
<span class="option_image">
<i class="fa-regular fa-hand-scissors fa-rotate-90 fa-xl" style="color: #ff2c1f;"></i>
<p>Scissors</p>
</span>
</div>
</section>
</section>
<script src="gamescript.js"></script>
<footer>
<p>Razan</p>
<div class="social">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-square-github"></i></a>
<a href="#"><i class="fa-brands fa-square-x-twitter"></i></a>
</div>
<p class="end"> © by Razan 2024</p>
</footer>
</body>
</html>