-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
58 lines (35 loc) · 1.38 KB
/
home.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
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
<script type="text/javascript" src="jquery-3.1.1.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=320" />
<title>Peppertools
</title>
<link href="home-design.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/x-icon" href="IMG/logo2.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div id="topbar"> <img id="logo" src= "IMG/logo.gif">
<a href="home.html">
<div id="but1" class="button"><span id="home">Home</span> </div>
<a href="Contact.html">
<div id="but2" class="button"><span id="contact">Contact</span></div> </a>
<div id="but3" class="button"><span id="machinery">Machinery</span></div>
<div id="but4" class="button"><span id="login">Login</span></div>
</div>
<script type="text/javascript">
$("#contact").click(
$.ajax("Contact.html")
.done(function(data) {
$("body").html(data);
})
.fail(function() {
alert("Could not load page");
});
)
</script>
</body>
</html>