-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
55 lines (55 loc) · 1.8 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
<!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 Me</title>
</head>
<style>
body{
background: linear-gradient(-90deg, #e4ee52, #3ce759, #23A6D5, #23D5AB);
background-size: 300% 300%;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
position: relative;
animation: change 10s ease-in-out infinite;
}
@keyframes change {
0%{
background-position: 50% 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}
.ContactMe{
font-size: 46px;
text-align: center;
}
.username {
font-weight: bold;
font-size: large;
}
button{
block-size: 35px;
border-radius: 5px;
padding: 7px;
text-align: center;
}
</style>
<script src="script.js"></script>
<body>
<h1 class = "ContactMe"> Contact Me</h1>
<p class = "username"> [email protected]</p>
<p>Please feel free to list your name and email so that I can answer any of your questions.</p>
<form action="https://formsubmit.co/[email protected]" method="POST">
<input type="text" name="name" required> <br> <br>
<input type="text" name="email" required> <br> <br>
<input type="text" name = "texts" required> <br> <br>
<button type="submit">Send</button>
</form>
</body>
</html>