-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
83 lines (65 loc) · 1.72 KB
/
news.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
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./styles/style.css">
<script src="JS/myScript.js"></script>
<!--(a)--><title>My Shopping Cart</title>
</head>
<body>
<div class="background">
<p id="dat">
<script>
Dat();
</script>
</p>
<img src="images\cart1.png" alt="The cart image" class="logo"width="200px" height="200px" >
<!-- (b) -->
<!-- add a header (c)--><h1>Shopping Cart</h1>
<!-- add a sub-header (c) --><h2>The online shopping store</h2>
<!-- add a horizontal line (d)--><hr>
<!-- add a horizontal menu (e) -->
<div class="nav">
<ul >
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="register.html">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
<div class="productName">
<button type="button" class="btn1" onclick="loadData('btn1')">
Iphone XS
</button>
<button type="button" class="btn2" onclick="loadData('btn2')">
Iphone XS Max
</button>
<button type="button" class="btn3" onclick="loadData('btn3')">
Iphone 8s Plus
</button>
<button type="button" class="btn4" onclick="loadData('btn4')">
Iphone SE
</button>
<button type="button" class="btn5" onclick="priceForInLoop()">
Average Price
</button>
<button type="button" class="btn6" onclick="priceHigher()">
Prices Higher than 1000
</button>
<button type="button" class="btn7" onclick="priceLower()">
Prices lower than 800
</button>
</div>
<img src="./images/apple logo.png" alt="phone image" id="image1">
<p id="para">
Come And get Your Favorite one
</p>
<!-- add a horizontal line (d)-->
<hr>
<!-- add a footer (g)-->
<footer >
<p>Created by :Damnidu TWT</p>
<p ><a href="">Visit Our Course</a></p>
</footer>
</div>
</body>
</html>