-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
79 lines (78 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/contact/contact.css" />
<link rel="stylesheet" href="header.css" />
<link rel="icon" href="Images/logo.png" />
<title>Contact-Me</title>
</head>
<body>
<div id="header"></div>
<div class="container">
<div class="bubbles">
<span style="--i: 11"></span>
<span style="--i: 12"></span>
<span style="--i: 24"></span>
<span style="--i: 10"></span>
<span style="--i: 23"></span>
<span style="--i: 18"></span>
<span style="--i: 16"></span>
<span style="--i: 19"></span>
<span style="--i: 20"></span>
<span style="--i: 22"></span>
<span style="--i: 25"></span>
<span style="--i: 18"></span>
<span style="--i: 21"></span>
<span style="--i: 15"></span>
<span style="--i: 13"></span>
<span style="--i: 26"></span>
<span style="--i: 17"></span>
<span style="--i: 13"></span>
<span style="--i: 28"></span><span style="--i: 11"></span>
<span style="--i: 12"></span>
<span style="--i: 24"></span>
<span style="--i: 10"></span>
<span style="--i: 23"></span>
<span style="--i: 18"></span>
<span style="--i: 16"></span>
<span style="--i: 19"></span>
<span style="--i: 20"></span>
<span style="--i: 22"></span>
<span style="--i: 25"></span>
<span style="--i: 18"></span>
<span style="--i: 21"></span>
<span style="--i: 15"></span>
<span style="--i: 13"></span>
<span style="--i: 26"></span>
<span style="--i: 17"></span>
<span style="--i: 13"></span>
<span style="--i: 28"></span>
</div>
<div class="main">
<div class="box">
<div class="contact-title">Contact Me</div>
<form data-netlify="true" name="contact-form" class="form">
<input class="fname" type="text" name="name" placeholder="What's Your Name?" />
<input class="femail" type="email" name="email" placeholder="What's Your email" />
<textarea class="fmessage" name="message" placeholder="Writew to your hearts content"></textarea>
<input class="submitbtn" type="submit" value="Submit" />
</form>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g="
crossorigin="anonymous"
></script>
<script>
$(function () {
$("#header").load("header.html");
});
</script>
<script src="/contact/contact.js"></script>
<script type="javascript" src="header.js"></script>
</body>
</html>