-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- ^ the viewport meta tag is to make your webpage responsive according to screen size -->
<title>Kevin Wang</title>
<!-- ^ your webpage's title -->
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- ^ where we link our CSS file to our webpage -->
<link rel="stylesheet" href = https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css>
<!-- this piece of code allows you to grab the instagram icon and display it ^^^ -->
</head>
<body>
<div class = "card">
<h1>Send me something!</h1>
<a href="/">Back to home</a>
<!-- form below -->
<form name="contact" netlify>
<input class="form" type="text" id="name" name="name" placeholder="Your name ..">
<br />
<input class="form" type="text" id="email" name="email" placeholder="Your email..">
<br />
<textarea class="form" id="subject" name="subject" placeholder="Write something .." style= "height:200px"></textarea>
<br />
<button class="form" type="submit">Send</button>
</form>
</div>
<script src="script.js">
</script>
<!-- ^ where we link our JS file to our webpage (we don't need to worry about this for now!) -->
</body>
</html>