-
Notifications
You must be signed in to change notification settings - Fork 1
/
head.php
54 lines (52 loc) · 2.27 KB
/
head.php
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
<!DOCTYPE HTML>
<html>
<head>
<title>Railway Tickets Management System</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<link href="css/calendar-eightysix-default.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/calendar-eightysix-osx-dashboard.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/calendar-eightysix-vista.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="js/mootools-1.2.4-core.js"></script>
<script type="text/javascript" src="js/mootools-1.2.4.2-more.js"></script>
<script type="text/javascript" src="js/calendar-eightysix-v1.0.1.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() {
new CalendarEightysix('exampleI', { 'offsetY': -4 });
new CalendarEightysix('exampleII', { 'startMonday': true, 'format': '%m.%d.%Y', 'slideTransition': Fx.Transitions.Back.easeOut, 'draggable': true, 'offsetY': -4 });
});
</script>
</head>
<body>
<div class="header-top">
<div class="wrap">
<div class="logo">
<a href="index.html"><img height="56px" src="images/rtms.png" alt=""/></a>
</div>
<div class="cssmenu">
<nav id="nav" role="navigation">
<a href="#nav" title="Show navigation">Show navigation</a>
<a href="#" title="Hide navigation">Hide navigation</a>
<ul class="clearfix">
<li class="active"><a href="index.php">Home</a></li>
<li><a href="signup.php"><span>Get Started</span></a></li>
<div class="clear"></div>
</ul>
</nav>
</div>
<div class="buttons">
<div class="login_btn">
<a href="login.php">Login</a>
</div>
<div class="get_btn">
<a href="signup.php">Signup</a>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
<h2 class="head">BOOK <span class="m_1">YOUR </span>TICKET <span class="m_1">NOW!</span></h2>
</div>
</div>