-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (76 loc) · 3.13 KB
/
index.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
<!doctype html>
<html>
<head>
<title>DrinkUp</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="assignment6/favicon/drink_blue.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="assignment6/css/general.css">
<style type="text/css">
a#try{
text-decoration: none;
position: absolute;
margin-top: 320px;
margin-left: 10px;
}
</style>
</head>
<body>
<header class="head">
<img src="assignment6/logo/drink_logo.png">
<article>
<form action="posted" method="post">
<h1 id="sign">Sign in:</h1>
<label for="username">username: </label>
<input id="username" name="username" tabindex="1" placeholder="username">
<label for="password">password:</label>
<input id="password" name="password" tabindex="2" placeholder="password">
<input type="submit" value="login" class="signin" id="submit">
<a id="account" href="">Create an account</a>
</form>
</article>
</header>
<main>
<div class="container" >
<nav>
<div id="divNav">
<ul>
<li><a href="assignment6/bars.html" id="Bars">Bars </a> </li>
<li><a href="assignment6/menu.html" id="Menu">Menu</a></li>
<li><a href="assignment6/order.html" id="OrderOnline">Order Online</a></li>
<li><a href="assignment6/contact_us.html" id="ContactUs">Contact us</a></li>
<li><a href="assignment6/advertisement.html" id="Advertisement">Advertisement</a></li>
<li><a href="assignment6/barmap.html" id="Map">Map</a></li>
<li><a href="assignment6/search.html" id="Search">Search</a></li>
</ul>
</div>
</nav>
<div id="contentDiv">
<div id="mainDiv">
<hgroup>
<h1>Welcome, order your drinks</h1>
<h2>You can easily order online</h2>
</hgroup>
<p>We encourage our customers to use this app rather than waiters</p>
<a id="try" href="assignments.html"><h1>Assignments</h1></a>
</div>
</div>
</div>
</main>
<footer>
<article id="copyright">
<small>
© Since 2013
</small>
<br>Drink it... Order online
<section id="social">
<a class="ir github" title="Github'daki projelerimiz" href="https://github.com">
github
</a><a class="ir twitter" title="Twitter hesabımız" href="http://twitter.com">
twitter
</a><a class="ir facebook" title="Facebook sayfamız" href="http://facebook.com">
faceboook</a>
</section>
</article>
</footer>
</body>
</html>