-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex_footer.html
131 lines (131 loc) · 3.2 KB
/
index_footer.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
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Footer Design</title>
<style>
*{
margin: 0;
padding: 0%;
font-family: 'Courier New', Courier, monospace;
box-sizing: border-box;
}
.footer{
margin-top: 150px;
width: 100%;
padding: 100px 15%;
background: #2cddda;
color: #0f0f0f;
display: flex;
}
.footer div{
text-align: center;
}
.col-2{
flex-grow: 2;
}
.footer div h3{
font-weight: bold;
margin-bottom: auto;
letter-spacing: normal;
}
.col-1 a{
display: block;
text-decoration: none;
color: #efefef;
margin-bottom: 10px;
}
.col-2 a{
display: block;
text-decoration: none;
color: #efefef;
margin-bottom: 10px;
}
form{
width: 90%;
max-width: 200px;
}
.input-group{
margin-bottom: 30px;
position: relative;
}
input, textarea{
width: 100%;
height: 45px;
border-radius: 10px;
padding: 10px;
outline: 0;
border: 1px solid rgb(244, 244, 245);
color: #cf6969;
background: #efefef;
font-size: 15px;
}
label{
height: 100%;
left: 0;
top: 0;
padding: 10px;
color: #f9f9fa;
cursor: text;
position: relative;
}
button{
background-color: rgb(47, 33, 236);
color: rgb(250, 247, 249);
padding-left: 40px;
padding-right: 40px;
padding-top: 7px;
padding-bottom: 7px;
margin: 70px;
border-radius: 17px;
border: none;
box-shadow: 5px 5px 20px rgb(10, 10, 10);
font-family: cursive fantasy;
font-size: large;
}
button:hover{
background-color: rgb(50, 58, 66);
color: rgb(110, 140, 221);
cursor: default;
}
button:active{
margin-top: 75px;
margin-left: 60px;
box-shadow: 0px 0px 1px rgb(234, 236, 238) ;
}
</style>
</head>
<body>
<div class="footer">
<div class="col-1">
<h3>USEFUL LINKS</h3>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
<a href="#">Shop</a>
<a href="#">Blog</a>
</div>
<div class="col-2">
<h3>ENQUIRES</h3>
<div class=" input group">
<label for="name">Your Name:</label>
<input type="text" id=" name" required>
</div>
<div class=" input group">
<label for="number">Phone Number:</label>
<input type="text" id=" nunmber" required>
</div>
<div class=" input group">
<label for="email">Email:</label>
<input type="text" id=" email" required>
</div>
<div class=" input group">
<label for="message">Your Message:</label>
<textarea id="message" rows="5"></textarea>
</div>
<button type="submit">SUBMIT</button>
</div>
</div>
</body>
</html>