-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
53 lines (50 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="date.js">
<script>
function showDateAndTime(){
document.getElementById("current_date").innerHTML = Date();
}
</script>
</head>
<body>
<div class="hi">
<header>
<h1>FRANKIE <Meta:utf></Meta:utf></h1>
<p> <span id="datetime"></span></p>
<script>
var dt = new Date();
document.getElementById("datetime").innerHTML = dt.toLocaleString();
</script>
<nav>
<ul>
<a href="about.html"><li>Home</li></a>
<a href="contact.html"><li>Contact Me</li></a>
</ul>
</nav>
<p id="current_date"></p>
</header>
<div class="content">
<form class="contact margin-center" name="contact" method="POST" data-netlify="true">
<input type="text" name="name" placeholder="Full name" required>
<input type="email" name="email" placeholder="Email Address" required>
<input type="tel" name="phone_num" placeholder="(555)444-5000"
pattern="[\(]\d{3}[\)]\d{3}[\-]\d{4}"
required>
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit">SUBMIT</button>
</form>
<video class="margin-center" width="620" height="240" controls>
<source src="myv.MOV" type="video/mp4">
Your browser does not support the video tag.
</video>
<a class="margin-center" href="https://www.instagram.com/dcano_1/?hl=e" target="_blank"><img src="profile.JPG" id="profile" alt="" height="100px" ></a>
</div>
</div>
</body>
</html>