-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactnew.html
More file actions
117 lines (102 loc) · 1.88 KB
/
contactnew.html
File metadata and controls
117 lines (102 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: sans-serif;
color: #303030;
background-color: #fffcf4;
}
h1 {
text-align: center;
font-size: 1.5em;
}
input {
margin-bottom: 10px;
width: 90%;
display: block;
margin-top: 5px;
border: 0.5px solid #aaa;
background-color: #f8f8f8;
border-radius: 3px;
}
textarea {
margin-top: 5px;
width: 90%;
height: 100px;
border: 0.5px solid #aaa;
background-color: #f8f8f8;
border-radius: 3px;
display: block;
}
textarea:hover, input:hover{
border: 1px solid green;
}
img {
width: 50px;
height: auto;
display: block;
margin: 5px;
}
p {
font-size: 10pt;
}
.content {
margin: 0 auto;
width: 70%;
}
.icons {
float: left;
width: 20%;
}
.input {
float: right;
width: 80%;
}
.form-content {
margin-left: 10px;
}
#submit {
margin-top: 15px;
width: 20%;
}
</style>
</head>
<body>
<div class="content">
<h1>Contact Us</h1>
<div class="icons">
<img src="assets/contact1.png">
<p>Address:</p><p>Maxcap HQ, Ottawa</p>
<img src="assets/contact2.png">
<p>Contact number:</p><p>905-191-919</p>
<img src="assets/contact3.png">
<p>Email:</p><p>maxcap@maxcap.com</p>
</div>
<div class="input">
<div class="form-content">
<label>First Name: </label>
<input type="text" placeholder="Enter first name">
<br>
</div>
<div class="form-content">
<label>Last Name: </label>
<input type="text" placeholder="Enter last name">
<br>
</div>
<div class="form-content">
<label>Email: </label>
<input type="text" placeholder="Enter email">
<br>
</div>
<div class="form-content">
<label>Message: </label>
<textarea type="text"></textarea>
</div>
<div class="form-content">
<input type="submit" value="Submit form" id="submit">
</div>
</div>
</div>
</body>
</html>