-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
58 lines (47 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
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Agbalumo&family=Butcherman&family=Calligraffitti&family=Dancing+Script:wght@600&family=Lato:wght@300&family=Montserrat:wght@600&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans&family=Pacifico&family=Parisienne&family=Poppins&family=Quicksand:wght@500&family=Raleway&family=Roboto&family=Tangerine:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css"/>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
</head>
<body>
<div class="header">
<div class="header-name">
<h1>Carl D Moreau</h1>
</div>
<div class="header-navigation">
<h4><a class="nav-but" href="index.html">Home</a></h4>
<h4><a class="nav-but" href="about.html">About</a></h4>
<h4><a class="nav-but" href="portfolio.html">Projects</a></h4>
</div>
</div>
<div class="contact-div">
<h1 id="lets-get">Let's get in touch!</h1>
<form>
<label for="fname"><p>First name:</p></label>
<input type="text" id="fname" name="fname">
<label for="lname"><p>Last name:</p></label>
<input type="text" id="lname" name="lname">
<label for="email"><p>Email:</p></label>
<input type="email" id="email" name="email">
<br>
<label for="phone"><p>phone number:</p></label>
<input type="tel" id="phone" name="phone">
<br>
<p>Type your message:</p>
<textarea name="message" rows="10" cols="30">
</textarea>
<br>
</form>
<button id="submit" type="submit" value="submit">Submit</button>
<br>
</div>
<script src="/javascript.js"></script>
<script src="/success.js"></script>
</body>
</html>