-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
160 lines (157 loc) · 3.95 KB
/
contact.html
File metadata and controls
160 lines (157 loc) · 3.95 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/script.js"></script>
</head>
<body id="contact">
<div class="container">
<header class="header">
<a class="link-title" href="/">Minimalistic Website</a>
</header>
<nav class="menu">
<a href="/">Home</a>
<a href="about.html">About us</a>
<a href="contact.html">Contact</a>
</nav>
<aside>
<h1>Side Bar</h1>
</aside>
<article class="main">
<h1 class="page-heading">Contact</h1>
<div id="form">
<form action="process.php"></form>
<p>
<label for="name">Name:</label>
<input type="text" name="name" placeholder="enter your name">
</p>
<p>
<label for="email">Email:</label>
<input type="email" name="email" placeholder="enter email eg:xyz@gmail.com">
</p>
<p>
<label for="name">Subject:</label>
<input type="text" name="subject" placeholder="mention your subject">
</p>
<p>
<label for="message" >Message </label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</p>
<p>
<input id="submit" type="submit" name="submit" value="send message">
</p>
</form>
</div>
</article>
<footer>
©2030 Minimal Website <span class="separator">|</span>
Design by <a href="http://www.google.com"> Aditi Singh</a>
</footer>
<style>
body{
background:#F4F4F4;
margin:0;
}
.link-title{
text-decoration: none;
font-size: 24px;
color: #444444;
}
.container{
width:780px;
margin:0 auto;
background: #FFF;
box-shadow: 0px 9px 13px 5px;
}
.header{
padding: 45px 0 20px 40px;
}
.menu{
background:blue;
padding:6px 0 6px 40px;
}
.menu a{
color: #c5d6db;
text-decoration: none;
font-size: 14px;
font-family: "Arial Narrow","Myriad Pro";
}
.menu a:hover{
color: #ecf2f3;
}
aside{
float:left;
width: 120px;
padding:30px 0 0 40px;
}
h1{
margin: 0px;
color: #869843;
fony-size:24px;
font-family: "Arial Narrow","Myriad Pro";
font-weight: :normal;
}
h2{
color: #3b7687;
font-size: 15px;
margin: 20px 0 5px 0;
}
.main{
margin: 0 0 0 180px;
padding: 35px 40px 30px 0;
color: #444444;
font-family: "Georgia";
font-size: "18px";
line-height: 18px;
text-emphasis: justify;
}
.main a:hover{
color: #444444;
}
footer{
padding:6px 40px 6px 40px;
background: #d6d6d6;
font-family: "Lucida Sans Unicode";
color:#444444;
font-size: 11px;
text-decoration: right;
}
footer a{
text-decoration: none;
color: #262626;
}
.separator{
color: #FFFFFF;
font-size: 11px;
}
#contact #form{
width: 500px;
box-shadow: 0px 9px 13px 5px;
padding: 10px 10px 10px 10px;
margin: 0 auto;
border-radius: 5px;
}
#contact .page-heading{
text-align: center;
margin-bottom: 20px;
}
#contact #form input{
width: 100%;
border-radius: 5px;
height: 20px;
background: #D6D6D6;
}
#contact #form #message{
width: 100%;
border-radius: 5px;
background: #D6D6D6;
}
#contact #form #submit{
height: 30px;
background: rgb(59,118,135);
}
</style>
</body>
</html>