-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
84 lines (79 loc) · 2.33 KB
/
support.html
File metadata and controls
84 lines (79 loc) · 2.33 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>Untitled Document</title>
<link href="css/mystyle.css" rel="stylesheet" type="text/css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
jQuery('body').css('display','none');
jQuery(document).ready(function() {
jQuery('body').fadeIn();
jQuery('a').on('click',function(event){
var thetarget = this.getAttribute('target')
if (thetarget != "_blank"){
var thehref = this.getAttribute('href')
event.preventDefault();
jQuery('body').fadeOut(function(){
//alert(thehref)
window.location = thehref
});
}
});
});
setTimeout(function(){
jQuery('body').fadeIn(3000);
},1000)
</script>
</head>
<body>
<div id="div1">
<div class="topnav" id="myTopnav">
<a href="home.html" style="float: left; color: whitesmoke;" >Aegean Skates</a>
<a href="Sales.html">Sales</a>
<a href="support.html" class="active">Support</a>
<a href="home.html">Community</a>
<a href="home.html">Accessories</a>
<a href="home.html">Boards</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<div> <img src = "images/skate.JPG" alt="image of skater" ></div>
</div>
<h2 class="ptitle"> Contact us - support page</h2>
<p >
<form action="contactus_page.php" method="post">
<p><br><br>
</p>
<table width="574" border="1">
<tbody>
<tr>
<th colspan="2" scope="row">Enter your full name and email address and your questions </th>
</tr>
<tr>
<th width="75" scope="row">Name:</th>
<td width="483"><input name="name" type="text" required="required" size="40"></td>
</tr>
<tr>
<th scope="row">Email:</th>
<td><input name="email" type="email" required="required" size="40"></td>
</tr>
<tr>
<th height="61" scope="row">Comments </th>
<td><textarea name="comments" cols="80" rows="4" wrap="soft" id="comments"></textarea></td>
</tr>
<tr>
<th scope="row"> </th>
<td><input type="submit" value="Submit"></td>
</tr>
<tr>
<th scope="row"> </th>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</form>
</p>
<footer class="footer1">copyright</footer>
</body>
</html>