-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject12.html
More file actions
27 lines (27 loc) · 1010 Bytes
/
Copy pathproject12.html
File metadata and controls
27 lines (27 loc) · 1010 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="project12.css">
</head>
<body>
<p class="p1">youtube subscribe button</p>
<button id="subscrib-btn" onclick="subscribbtn()">subscribe</button>
<br>
<br>
<p class="p2">Amazon Shipping Calculator</p>
<p class="p2">Orders under $40 = +$10 shipping.</p>
<p class="p2" >Orders over $40 = <span style="font-family: 'Courier New', Courier, monospace;font-size: x-large;">FREE</span> shipping.</p>
<input class="input" type="number" id="cost" placeholder="the cost here">
<button type="button" id="calculat" onclick="calculat()">Calculate</button>
<p id="res"></p>
<br>
<a href="https://supersimple.dev/projects/rock-paper-scissors/">click here</a>
<br>
<p>rock paper scissors</p>
<a href="project9.html">Clik Here</a>
<script src="project12.js"></script>
</body>
</html>