-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
116 lines (103 loc) · 2.38 KB
/
gallery.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Gallery</title>
<style type="text/css">
body {
background-image: url(images/background.jpg);
background-repeat: no-repeat;
background-size: 100%;
}
nav {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 18px;
font-style: normal;
cursor: default;
margin-top: 10px;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
overflow: visible;
right: 50%;
}
a {
background-color: #6B7E84;
text-decoration: none;
color: #F5A532;
text-transform: none;
word-spacing: normal;
letter-spacing: normal;
text-align: center;
padding: 5px;
height: auto;
width: auto;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #936C44;
border-right-color: #936C44;
border-bottom-color: #936C44;
border-left-color: #936C44;
float: none;
clear: both;
cursor: pointer;
filter: Gray;
}
a:hover {
color: #6B7E84;
background-color: #F5A148;
}
.main {
height: 100%;
width: 80%;
background-color: #000;
margin-top: 70px;
}
.sideimage {
height: 100%;
width: 30%;
background-color: #000;
padding: 5px;
}
.area {
height: 100%;
width: 70%;
background-color: #000;
}
</style>
</head>
<body>
<nav align="center">
<img src="images/logo.png" width="178" height="81" />
<a id="cb" href="index.html">Create Your Bike</a>
<a href="#" gallery="">MotorCraft Gallery</a>
<a href="events.html">Events</a>
<a href="craftsmen.html">Meet Our CraftsMen</a>
<a href="contect.jsp">Contect us</a>
</nav>
<table class="main" align="center">
<tr>
<td class="sideimage">
<table width="100%">
<tr>
<td><img src="images/bike1.jpg" width="100%" height="100"/></td>
</tr>
<tr>
<td><img src="images/bike1.jpg" width="100%" height="100"/></td>
</tr>
<tr>
<td><img src="images/bike1.jpg" width="100%" height="100"/></td>
</tr>
<tr>
<td><img src="images/bike1.jpg" width="100%" height="100"/></td>
</tr>
</table>
</td>
<td class="area">
</td>
</tr>
</table>
</body>
</html>