-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
128 lines (105 loc) · 4.33 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
124
125
126
127
128
<!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">
<link rel="stylesheet" href="./public/css/contactSASS.css">
<script src="https://kit.fontawesome.com/8095dfc684.js" crossorigin="anonymous"></script>
<title>Contact Jacory</title>
</head>
<body>
<div class="cards">
<div class="contact">Contact Me Click Here</div>
<div class="contact-form">
<div href="#" class="close"><i class="fa-solid fa-door-closed"></i></div>
<form action="https://formspree.io/f/mjvlzanw" method="POST">
<div class="control">
<input type="text" id="name" name="name" />
<label for="name">Your Name</label>
</div>
<div class="control">
<input type="text" id="email" name="email" />
<label for="email">Email Address</label>
</div>
<div class="control">
<textarea id="message" name="message" ></textarea>
<label for="message">Message</label>
</div>
<div class="control">
<input type="tel" id="phone" name="phone" pattern="[0-9]{1,12}" maxlength="12" />
<label for="phone">Phone</label>
</div>
<div id="chosen"></div>
<div class="control submit">
<button type="submit">Send</button>
</div>
</form>
</div>
<div class="card active" id="overview">
<a class="card-toggle"><i class="fa fa-arrow-circle-left"></i></a>
<div class="card-content">
<div class="row">
<div class="left col">
<h2 class="animate__animated animate__headShake">Web Development at its<strong>Finest</strong></h2>
<p>Web development is not just about writing code, it's about creating experiences that people will remember and come back to. <br /><em></em></p>
</div>
<div class="right col">
<ul>
<li><a class="links" href="/"><i class="fa-regular fa-comment"></i></a></li>
<li><a class="links" href="/"></a></li>
<li><a class="links" href="contact.html"></a></li>
<li style="float:right"><a class="active links" href="/about.html"></a></li>
</ul>
<nav>
<h2 class="title">
<span class="title-word title-word-1">con</span>
<span class="title-word title-word-2">ta</span>
<span class="title-word title-word-3">ct</span>
<span class="title-word title-word-4">me</span>
</h2>
</nav>
<!-- <button onclick="toggleCalendar()"><i class="fa-regular fa-calendar-days"></i></button>
<div id="calendar" style="display: none;">
<div id="month"></div>
<table id="dates">
<thead>
<tr>
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div>
<label for="new-date">Add date:</label>
<input type="date" id="new-date">
<button onclick="addDate()"></button>
</div>
<div>
<label for="remove-date">Remove date:</label>
<select id="remove-date"></select>
<button onclick="removeDate()">Remove</button>
</div> -->
</div>
</div>
</div>
</div>
<div id="tags">
<a class="oLinks" href="https://www.facebook.com/profile.php?id=100085422884404"><span>Facebook</span></a>
<a class="oLinks" href="https://twitter.com/webdeveloper575"><span>Twitter</span></a>
<a class="oLinks" href="#"><span>Google+</span></a>
<a class="oLinks" href="https://github.com/Pzo226"><span>Github</span></a>
<a class="oLinks" href="#"><span>Dribbble</span></a>
<a class="oLinks" href="https://codepen.io/pzo226"><span>CodePen</span></a>
</div>
</div>
</div>
<script src="./public/js/contact.js"></script>
</body>
</html>