-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (35 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title> Drink Machine </title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="21265603171579069693-128.png">
</head>
<body>
<p id="firsth"> Drink Machine </p id="firsth">
<p id="firsth1">chose your drink </p>
<div>
<form id="list">
<input type="radio" id="coffe" name="drink" value="coffe">
<label for="coffe">Coffe</label>
<br>
<input type="radio" id="cola" name="drink" value="cola">
<label for="cola">Cola</label>
<br>
<input type="radio" id="tea" name="drink" value="tea">
<label for="tea">Tea</label>
<br>
<input type="radio" id="water" name="drink" value="water">
<label for="water">Water</label>
</form>
</div>
<input type="text" placeholder="Enter your mony" id="price">
<br>
<button id="btn">Enter</button>
<label id="lableHabibi"></label>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous">
</script>
<script src="script.js"></script>
</body>
</html>