-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
109 lines (90 loc) · 1.81 KB
/
signup.html
File metadata and controls
109 lines (90 loc) · 1.81 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
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
<!DOCTYPE html>
</html>
<head>
<title>SACHI's Cooking | Signup</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{
}
.header{
background-color:#ab073e;
}
#img1{
display:inline-block;
margin-top: 5px;
margin-left: 5px;
}
#headleft{
display:inline-block;
}
#headright{
float:right;
position:relative;
}
#login{
display:block;
float:right;
margin-right: 5px;
margin-top: 5px;
}
.header h1{
margin-bottom: 0px;
}
.header p{
margin-bottom: 0px;
margin-top: 0px;
}
#searchbar{
margin-top: 35px;
padding-top: 3px;
}
#searchbut{
border-width: 2px;
margin-right: 5px;
padding-bottom: 1px;
}
.nav{
background-color:#248c6f;
padding-top: 8px;
padding-bottom: 8px;
padding-left: 5px;
}
.nav a{
margin-left: 1px;
margin-right: 1px;
border:4px solid #248c6f;
border-radius:5px;
color:black;
text-decoration:none;
}
.nav a#current{
background-color:#18c1ee;
border:4px solid #18c1ee;
}
.nav a:hover{
background-color:lightgrey;
border:4px solid lightgrey;
}
</style>
</head>
<body>
<div class="header">
<a href="index.html"><img src="logo.png" id="img1"></a>
<span id="headleft">
<h1>SACHI's Cooking</h1>
<p>Explore our exquisite recepies that would blow away your taste buds!</p>
</span>
</div>
<div class="nav">
<a href="index.html">Home</a>
</div>
<p>The content of our website is password protected.</p>
<p>If you wish to join us, please send an email to <b>sachiscooking@gmail.com</b>. You will receive the crediantials within minutes.</p>
<script>
function search(){
alert("we're very sorry for the inconvinence, but our search bar is currently under construction"+" "+":(")
}
</script>
</body>
</html>