-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
94 lines (84 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Touch Typing</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" type="text/css" href="webstyle.css">
<meta name="author" content="Mehtab Kaur">
<meta name="description" content="Learning how to touch type">
<meta name="keywords" content="typing, learn, touch, type, speed, wpm, accuracy, keyboards">
</head>
<body>
<header>
<a class="logo" href="index.html">MasterTyping</a>
<nav>
<ul class=navbar>
<li><a href="index.html">Home</a></li>
<li><a href="get-started.html">Get Started</a></li>
<li><a href="my-experience.html">My Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="content contact-page">
<h1 class="heading contact-heading">Contact Me</h1>
<div class="info-container" >
<p class= "introduction">
My name is Mehtab Kaur and I am a student at the <a href="https://www.uoguelph.ca/"target="_blank">University of Guelph</a>!
</p>
<p>If you have any questions or comments, here is how you can get in touch with me:</p>
<p class=contact-info>
<i class="material-icons">email</i> <a href="mailto:kaur2shine@gmail.com">kaur2shine@gmail.com</a>
</p>
<p class="contact-info">
<i class="material-icons">call</i> <a href="tel:519-404-1920">519-404-1920</a>
</p>
<p>
You can also add me on my social media:
</p>
<p class="contact-info">
<a class="fab fa-instagram"></a>
<a href="https://www.instagram.com/kaur2shine/?hl=en"target="_blank">Instagram</a>
</p>
<p class="contact-info">
<a class="fab fa-discord"></a>
<a href="https://discordapp.com/users/724357846094970901"target="_blank">Discord</a>
</p>
</div>
<div class="form">
<form action = "message.php" method = "post">
<div class="input-container ic1">
<input id="firstname" name = "FName" class="input" type="text" placeholder="First Name" required />
</div>
<div class="input-container ic2">
<input id="lastname" name = "LName" class="input" type="text" placeholder="Last Name" required/>
</div>
<div class="input-container ic2">
<input id="email" name = "UserEmail" class="input" type="email" placeholder="Email" required/>
</div>
<div class="input-container ic3">
<textarea id = "message" name = "UserMsg" class="input" type="text" placeholder="Message" required></textarea>
</div>
<button type="submit" action = "message.php" method = "post" class="send-message">Send Message</button>
</form>
</div>
<!-- Script -->
<!-- <script type="text/javascript" src="js/script.js"></script> -->
</div>
<footer>
<div class="footer-sec">
<p class=name>MasterTyping</p>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="get-started.html">Get Started</a></li>
<li><a href="my-experience.html">My Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<p class=copyright>Copyright © MasterTyping - All rights reserved</p>
</div>
</footer>
</body>
</html>