-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitenararySample.html
109 lines (100 loc) · 3.3 KB
/
itenararySample.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
<html lang="en" class="no-js">
<head>
<style>
a{
text-decoration: none;;
}</style>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My itineraries</title>
<meta name="description" content="A shading effect for 3D transformed elements" />
<meta name="keywords" content="css3, transforms, shadow, shading, 3d, box shadow" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link rel="stylesheet" type="text/css" href="itSample.css" />
<script src="js/modernizr.custom.js"></script>
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
</head>
<body>
<div id="divTag">
<a href="homePage.html" id="navHome"><img src="images/finLogo.png.png" id="logoPic" >
<button id="buttonLogo">TripBuilder</button>
</a>
<span>
<a href="signUp.html">
<button class="buttonsfirst" style="float:right">Sign Up</button>
</a>
</span>
<span >
<button class="buttonsfirst" id="login" style="float:right" onclick="document.getElementById('id01').style.display='block'">Login</button>
</span>
</div>
<div class="container">
<header>
<h1 class="textUp" style="font-size: 50px; font-weight: bold;"><br><br>My Itineraries<span>Templates</span></h1>
</header>
<div class="wrapper">
<ul class="stage clearfix">
<li class="scene">
<div class="movie" onclick="return true">
<div class="poster"></div>
<div class="info">
<header>
<h1 class="headText">Venice</h1>
</header>
<p class="textForm">Trip to Venice</p>
</div>
</div>
</li>
<li class="scene">
<div class="movie" onclick="return true">
<div class="poster"></div>
<div class="info">
<header>
<h1 class="headText">France</h1>
</header>
<p class="textForm">
Trip to France
</p>
</div>
</div>
</li>
<li class="scene">
<div class="movie" onclick="return true">
<div class="poster"></div>
<div class="info">
<header>
<h1 class="headText">Dubai</h1>
</header>
<p class="textForm">
Trip to Dubai
</p>
</div>
</div>
</li>
</ul>
</div><!-- /wrapper -->
<form action="buildItinerary.html" style="font-size: 18px;">
<input type="submit" id="createIt" value="Create Your Own!"></input>
</form>
</div><!-- /container -->
<div id="footerdiv">
<footer>
<center>
<br>
<a href="AboutUs.html" target="self" rel="author"><bold class="foot">About Us</bold></a>
<br/>
<br/>
<a href="AboutUs.html" target="self" rel="author"><bold class="foot">Contact Us</bold></a>
<br/>
<br/>
<a href="mailto:tripbuilder@gmail.com?Subject=Hello%20again" target="self" rel="author"><bold class="foot">Suggestions</bold></a>
</center>
</footer>
</div>
</body>
</html>