-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (91 loc) · 3.74 KB
/
index.html
File metadata and controls
112 lines (91 loc) · 3.74 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet"href="style.css">
<title>Javascript Porjects</title>
</head>
<body>
<div class="container-1">
<h2>Challenge 1:Your age in Days</h2>
<div class="flex-box-container-1">
<div>
<button class="btn btn-primary" onclick="ageindays()">Click me</button>
</div>
<div>
<button class="btn btn-danger" onclick="reset()">reset</button>
</div>
</div>
<div class="flex-box-container-1">
<div id="flex-box-result"></div>
</div>
</div>
<div class="container-2">
<h2>Challenge 2:Cat Generator</h2>
<button class="btn btn-success" id="cat-generator" onclick="generateCat()">Generate Cat</button>
<div class="flex-box-container-2" id="flex-cat-gen">
</div>
</div>
<div class="container-3">
<h2>Challenge 3:Rock,Paper,Scissors</h2>
<div class="flex-box-rps"id="flex-box-rps-div">
<img id="rock"src="https://media.giphy.com/media/Zeclty27yLYJqrz5pO/giphy.gif" height=150 width=150 alt="" onclick="rpsgame(this)">
<img id="paper"src="https://media.giphy.com/media/ozf26DV8FqaCpkYt6n/giphy.gif" height=150 width=150 alt="" onclick="rpsgame(this)">
<img id="scissors"src="https://www.animatedimages.org/data/media/1508/animated-scissor-image-0007.gif" height=150 width=150 alt="" onclick="rpsgame(this)">
</div>
</div>
<div class="container-4">
<h2>Challenge 4:To Change Color of All Buttons</h2>
<div class="flex-box-pick-color">
<form action="">
<select name="backdrop" id="background" onchange="buttonColorChange(this)">
<option value="random">Random</option>
<option value="red">Red</option>
<option value="green">Green</option>
<option value="random">Reset</option>
</select>
</form>
<button class="btn-btn-primary">Microsoft!</button>
<button class="btn-btn-success">Google!</button>
<button class="btn-btn-danger">Amazon!</button>
<button class="btn-btn-warning">Facebook!</button>
</div>
</div>
<div class="container-5">
<h2>Challenge 5: Blackjack</h2>
<h3><span id="blackjack-result">Let's Play</span></h3>
<div class="flex-blackjack-row-1">
<div id="your-box">
<h2>You: <span id ="your-blackjack-result">0</span></h2>
</div>
<div id="dealer-box">
<h2>Dealer: <span id ="dealer-blackjack-result">0</span></h2>
</div>
</div>
<div class="flex-blackjack-row-2">
<div>
<button class="btn-lg btn-primary mr-2" id="blackjack-hit">Hit</button>
<button class="btn-lg btn-warning mr-2" id="blackjack-stand">Stand</button>
<button class="btn-lg btn-danger" id="blackjack-deal">Deal</button>
</div>
</div>
<div class="flex-blackjack-row-3">
<table style="border :1px solid black">
<tr>
<th>Wins</th>
<th>Losses</th>
<th>Draws</th>
</tr>
<tr>
<td><span id="wins">0</span></td>
<td><span id="losses">0</span></td>
<td><span id="draws">0</span></td>
</tr>
</table>
</div>
</div>
<script src="script.js"></script>
</body>
</html>