-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 2.26 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
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="jsQ/imghover/css/imagehover.min.css">
<link rel="stylesheet" type="text/css" href="jsQ/theme3/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="jsQ/theme3/theme.css">
<link rel="stylesheet" type="text/css" href="jsQ/theme3/jquery-ui.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" >
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="pepsi.css">
<title>quui</title>
</head>
<body>
<section class="main-container">
<div class="header">
<div class="brand-logo">
<img src="pep-logo.png"/>
</div>
<div class="menu">
<ul>
<li>Home</li>
<li>Products</li>
<li>What's New</li>
<li>Contact</li>
</ul>
</div>
</div>
<div class="content">
<div class="info">
<h1>Pepsi Chase The Thunder</h1>
</div>
<div class="img">
<img src="pep2.png" class="imgi" />
</div>
</div>
<div class="bottom">
<table>
<tr><td><img src="pep.png" onclick="show('pep.png'), col('#000')" /></td>
<td><img src="pep2.png" onclick="show('pep2.png'), col('#009')" /></td>
<td><img src="pep3.png" onclick="show('pep3.png'),col('#003')" /></td>
</tr>
</table>
</div>
</section>
</body>
<script src="jsQ/jquery.js" type="text/javascript"></script>
<script src="jsQ/jsin/jquery-ui.js" type="text/javascript"></script>
<!--<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>-->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" ></script>
<script type="text/javascript">
function show(pic){
var x=document.querySelector('.imgi').src=pic;
}
function col(clr){
var y=document.querySelector('.main-container');
y.style.background=clr;
}
</script></html>