-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
53 lines (52 loc) · 2.36 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>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script defer src="script.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Opally Taebunyanuphap">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Opally Taebunyanuphap professional website">
<title>Opally Taebunyanuphap</title>
</head>
<body onload="addYear()">
<header>
<h1 id="webname">Opally Taebunyanuphap</h1>
<nav id="myTopnav" class="topnav">
<a href="index.html">Home</a>
<a href="cv.html">CV</a>
<a href="contact.html" class="active">Contact me</a>
<a href="fun.html">For fun</a>
<a href="javascript:void(0);" class="icon">
<i class="fa fa-bars" onclick="activeNav()"></i>
</a>
</nav>
</header>
<div class="main">
<h2> Contact Me </h2>
<form action="">
<label for="name"> Your Name (required): </label><br>
<input type="text" name="name" id="name" required/><br>
<label for="email"> Your Email (required): </label><br>
<input type="email" name="email" id="email" required/><br>
<label for="comment"> Your Comment or Question: </label><br>
<textarea name="comment" id="comment" cols="30" rows="10" required></textarea><br>
<input type="submit" value="SEND" class="submit" onclick="validate()"/>
</form>
<p id="ValidateMsg"></p>
<br>
<table>
<tr><th>Contact Method</th><th>Description</th></tr>
<tr><td>Email</td><td>[email protected]</td></tr>
<tr><td>Phone</td><td>412-430-2223</td></tr>
<tr><td>LinkedIn</td><td><a href="https://www.linkedin.com/in/kanyaphat-taebunyanuphap-646902264" target="_blank">My_LinkedIn</a></td></tr>
</table>
</div>
<footer>
<p id="copyYear"> Opally Taebunyanuphap ©</p>
</footer>
</body>
</html>