-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathcontact.html
123 lines (105 loc) · 2.47 KB
/
contact.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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONTACT US</title>
</head>
<header>
<div class="lg">
<h2> <img src="logo.jpg" alt="Cultural Coders" class="image" width="50px" height="50px"> </h2>
</div>
<nav class="flex">
<ul class="flex">
<li>
<a href="">BACK</a>
</li>
</ul>
</nav>
</header>
<style>
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body {
font-family: Arial, sans-serif;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
background-size: cover;
}
.container{
width:100%;
height:100vh;
background-image: linear-gradient(rgba(222, 14, 237, 0.4),rgba(15, 200, 241, 0.4));
}
h1 {
text-align: center;
color: white;
}
header{
display: flex;
align-items: center;
justify-content: space-around;
}
nav ul li{
list-style: none;
display: inline-block;
}
nav ul li a{
text=decoration: none;
color: #fff;
font-size: 18px;
padding: 0 15px;
}
form {
max-width: 400px;
margin: 50 auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
color: white;
}
input, textarea {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 5px solid #faf9f9;
border-radius: 4px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
header,footer{
background-color:#fff;
color: #1e05fa;
width: 100%;
}
footer{
position: absolute;
bottom: 0;
text-align: center;
font-size: 15px;
padding: 20px 0;
}
</style>
<footer> <h3>© All Rights Reserved </h3> </footer>
<body>
<form>
<h1>CONTACT US</h1>
<label for="name">NAME:</label>
<input type="text" id="name" name="name"><br><br>
<label for="Email">EMAIL</label>
<input type="email" id="email" name="name"><br><br>
<label for="MESSAGE">MESSAGE:</label>
<textarea id="message" name="message" rows="5"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>