-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontactpage.html
More file actions
104 lines (93 loc) · 2.25 KB
/
contactpage.html
File metadata and controls
104 lines (93 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'>
<style>
h1 {
font-size: 60px;
text-align:15px;
color: #002859;
}
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}
::placeholder {
font-size: 15px;
padding: 5px;
}
button{
background-color:#002859;
}
button:hover{background-color:#0edbb0;}
button:focus{background-color:#0edbb0;;}
a {
color: white;
}
a.button{
color:green;
text-decoration: none;
}
a:visited {
color: purple;
}
a:active {
color: blue;
}
</style>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="background-color: rgb(248, 246, 247);">
<h1 style="margin:50px;color:#002859; padding-top: 50px;"> Contact Us
</h1>
<header id="header">
<nav>
<a id="logo" href="index.html">
<img height="60" src="Images/logo.png" alt="logo picture"/></a>
<a href="features.html" id="featuresLink">Features</a>
<a href="pricing.html" id="pricingLink">Pricing</a>
<a href="contactpage.html" id="contactLink">Contact Us</a>
</header>
</nav>
</header>
<div id="infobox" >
<br/><br/><br/><br/><br/><br/><br/>
Call Us:<br/>
<br/>+1 111 111-1111
<br/>+1 111 111-1111
<br/><br/>
<br/>Send Us an Email:
<br/>
<br/>blablabla@gmail.com
<br/><br/>
<br/>Come Visit Us:
<br/>
<br/>32 whatever street<br/><br/><br/><br/><br/><br/><br/><br/><br/>
</div>
<p style="margin:25px;">
Click to select the box
<br/><br/><br/><br/>
<textarea name="textarea" style="font-size:15px"
rows="3" cols="30"
placeholder="Enter your name"></textarea>
<hr style="width:50%;text-align:left;margin-left:0">
<textarea name="textarea" style="font-size:15px"
rows="3" cols="30"
placeholder=" Enter your email adress:"></textarea>
<br/><br/>
<hr style="width:50%;text-align:left;margin-left:0">
<textarea name="textarea" style="font-size:15px"
rows="5" cols="60"
placeholder=" Enter your comment"></textarea>
<br/><br/><br/><br/>
<hr style="width:50%;text-align:left;margin-left:0">
</p>
</br>
</br>
<button type="button" style="color:white; font-size:15px; text-align:center">Submit</button>
</div>
</body>
<script src="main.js"></script>
</html>