-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA9-category.html
More file actions
124 lines (108 loc) · 3.64 KB
/
PA9-category.html
File metadata and controls
124 lines (108 loc) · 3.64 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
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PA9</title>
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="PA9.css">
</head>
<body onLoad="CopyRight(); todayDate();">
<script src="PA9.js"></script>
<div class="navbar">
<a href="PA9.html">Home</a>
<div class="dropdown">
<button onclick="navigateCat();" class="dropbtn">Category
<i class="fa fa-caret-down"></i>
</button>
<div class=" dropdown-content">
<a href="PA9-link.html">Hats</a>
<a href="PA9-link.html">Shirts</a>
<a href="PA9-link.html">Jackets</a>
<a href="PA9-link.html">Rocket Launches</a>
<a href="PA9-link.html">Flame throwers</a>
</div>
</div>
<div class="dropdown">
<button onclick="navigateDeal();" class="dropbtn">Deals
<i class="fa fa-caret-down"></i>
</button>
<div class=" dropdown-content">
<a href="PA9-link.html">Basic Package</a>
<a href="PA9-link.html">Advanced Package</a>
<a href="PA9-link.html">Super Social Media Package</a>
<a href="PA9-link.html">Reddit DDOS package</a>
<a href="PA9-link.html">Elon Musk endorsement</a>
</div>
</div>
<a href="PA9-emp.html">Employment</a>
</div>
<div class="w3-container w3-dark-gray w3-center">
<div class="w3-padding">
<img height="170px;" width="auto;" src="logoT.png" alt="logo company logo (it is supposed to be lame for irony)">
</div>
</div>
<div class="w3-container">
<div style="width:100%;">
<br>
</div>
<a href="PA9-link.html">
<div style="width:100%;" class="w3-button w3-red">
<h1>Hats</h1>
<img src="hat.jpg" height="150px" width="auto" alt="">
</div>
</a>
<div style="width:100%;">
<br>
</div>
<a href="PA9-link.html">
<div style="width:100%;" class="w3-button w3-red">
<h1>Shirts</h1>
<img src="shirt1.jpg" height="150px" width="auto" alt="">
</div>
</a>
<div style="width:100%;">
<br>
</div>
<a href="PA9-link.html">
<div style="width:100%;" class="w3-button w3-red">
<h1>Jackets</h1>
<img src="jacket1.jpg" height="150px" width="auto" alt="">
</div>
</a>
<div style="width:100%;">
<br>
</div>
<a href="PA9-link.html">
<div style="width:100%;" class="w3-button w3-red">
<h1>Rocket Launches</h1>
<img src="rocketLaunch.jpg" height="150px" width="auto" alt="">
</div>
</a>
<div style="width:100%;">
<br>
</div>
<a href="PA9-link.html">
<div style="width:100%;" class="w3-button w3-red">
<h1>Flame Throwers</h1>
<h3>[Again, image omitted.]</h3>
</div>
</a>
<div style="width:100%;">
<br>
</div>
</div>
<div class="w3-row">
<div class="w3-rest w3-dark-gray">
<div class="w3-container">
<p> </p>
<!-- Last date modified -->
<div style="text-align:center;" id="dateModified">
</div>
<br>
</div>
</div>
</div>
</body>
</html>