-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
156 lines (136 loc) · 3.39 KB
/
contact.html
File metadata and controls
156 lines (136 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
</head>
<style>
section{
padding: 40px 15px;
}
.contact{
background: grey;
height: 100%;
width: 100%;
min-height: 100vh;
display: grid;
grid-template-columns: repeat(2,2fr);
align-items: center;
grid-gap: 6rem;
}
.contact-img img{
max-width: 100%;
width: 720px;
height: auto;
border-radius: 10px;
}
.contact-form h1{
font-size: 80px;
color: rgb(72, 72, 97);
margin-bottom: 20px;
}
span{
color: rgb(72, 72, 97);
}
.contact-form p{
color: wheat;
letter-spacing: 1px;
line-height: 26px;
font-size: 1.1rem;
margin-bottom: 3.8rem;
}
.contact-form form{
position: relative;
}
.contact-form form input,form textarea{
width: 100%;
padding: 17px;
bottom: none;
outline: none;
background: #191919;
color: wheat;
font-size: 1.1rem;
border-radius: 10px;
}
.contact-form textarea{
resize:none;
height: 200px;
}
.contact-form form .btn{
display: inline-block;
background: rgb(72, 72, 97);
font-size: 1.1rem;
letter-spacing: 1px;
text-transform: uppercase;
font-weight: 600;
border:2px solid transparent ;
border-radius:10px;
width: 200px;
transition: ease .20s;
cursor: pointer;
}
.contact-form form .btn:hover{
border: 2px solid grey;
background: transparent;
transform: scale(1.1);
}
footer{
background:#353333;
padding: 15px 0;
text-align: center;
font-family: 'Poppins', sans-serif;
}
footer .text span{
font-size: 17px;
font-weight: 400;
color: #fff;
}
footer .text span a{
font-weight: 500;
color: #FFF;
}
footer .text span a:hover{
text-decoration: underline;
}
/* @media (max-width:1570px){
section{
padding: 80px 3px;
transition: .2s;
}
}
.contact-form h1{
font-size: 60px;
}
.contact-form p{
margin-bottom: 3rem;
}
@media(max-width: 1090px){
} */
</style>
<body>
<section class="contact">
<div class="contact-form">
<h1>Contact <span>Us</span></h1>
<p>I AM AVAILABLE FOR FASHION SHOWS. CONNECT WITH ME VIA PHONE 0711125355
OR EMAIL :admin@example.com</p>
<form action="">
<input type="" placeholder="Your Name" required>
<input type="email" name="email" id="" placeholder="E-mail" required>
<input type="" placeholder="Write a Design" required>
<textarea name="" id="" cols="30" rows="10" placeholder="Your message" required></textarea>
<input type="submit" name="" value="submit" class="btn">
</form>
</div>
<div class="contact-img">
<img src="./images/fashion cartoon 1.jpg" width="50%" height="50%">
</div>
</section>
<footer>
<div class="text">
<span>Created By <a href="#">Emily MOKOENA</a> | © 2022 All Rights Reserved</span>
</div>
</footer>
</body>
</html>