-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguitarCenter.html
102 lines (96 loc) · 3.99 KB
/
guitarCenter.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<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" type="text/css" href="guitarCenter.css">
</head>
<body>
<div id="navbar">
</b><div class="nav" onmouseover="mi1()" onmouseout="mo1()"><b>Guitar</b></div>
<div class="nav" onmouseover="mi2()" onmouseout="mo2()"><b>Bass</b></div>
<div class="nav" onmouseover="mi3()" onmouseout="mo3()"><b>Drums</b></div>
<div class="nav" onmouseover="mi4()" onmouseout="mo4()"><b>Keyboards</b></div>
<div class="nav" onmouseover="mi5()" onmouseout="mo5()"><b>DJ & Lighting</b></div>
<div class="nav" onmouseover="mi6()" onmouseout="mo6()"><b>Used Gear</b></div>
<div class="nav" onmouseover="mi7()" onmouseout="mo7()"><b>Clearance</b></div>
</div>
<div id="navitems">
<div id="item1" onmouseover="nfn()">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
<div id="item2">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
<div id="item3">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
<div id="item4">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
<div id="item5">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
<div id="item6">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
<div id="item7">
<a href="#">Electric Guitar</a>
<a href="#">Acoustic Guitar</a>
<a href="#">Acoustic-Electric Guitar</a>
<a href="#">Classical Guitar</a>
</div>
</div>
<div class="image-data">
<img src="guitar2.jpg" width="440" height="200" ></img>
<img src="guitar3.jpg" width="440" height="200"></img>
<img src="guitar4.jpg" width="440" height="200"></img>
</div>
<div id="gmain">
<div id="gimg">
<div id="img">
<img id="aimg" width="400px" height="350px">
</div>
<br>
<button id="btn1" type="button" style="color: rgb(50, 29, 238); font-size: medium;" onclick="prv()"><b>Previous</b></button>
<button id="btn2" type="button" style="color: rgb(51, 48, 247); font-size: medium; margin-left: 285px;" onclick="nxt()"><b>Next</b></button>
</div>
<div id="ginfo">
<span id="pinfo">Product Info</span>
<div id="pinfodiv">
</div> <br>
<span id="sinfo">Shipping Info</span>
<div id="sinfodiv">
</div> <br>
<span id="custr">Customer Reviews</span>
<div id="custrdiv">
</div> <br>
<span id="price">Price: </span> <br>
<span id="sprice">Shipping Price: </span>
<br> <br>
</div>
</div>
<br>
<div id="tprice"><strong>Total Price: </strong></div>
<button type="button" id="btn3" onclick="buyg()">Buy</button>
<script src="guitarCenter.js"></script>
</body>
</html>