-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
99 lines (89 loc) · 3.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
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
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<!-- add the above to link to external file -->
<link rel="stylesheet" href="css/master.css" />
<!-- above links to transition animation code-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Trirong"/>
<style>
body {
font-family: "Trirong", Verdana;
}
</style>
<!-- lines 11 to 16 add a font from google fonts (Trirong), plus provides a fallback in house font (serif)-->
<title>Contact</title>
</head>
<body>
<header>
<header id="header background">
<div class="texture"></div>
</header>
<h1>- Greenhouse Digital Design -</h1>
<p>The Electronic Home of Christopher Matthews</p>
</header>
<nav>
<a href="index.html">Home</a> | <a href="who i am.html">Who I Am</a> |
<a href="creations.html">Creations</a>
</nav>
<div class="container">
<ul class="flex-grid">
<li class="flex-space">
<h1 style="text-align: center">
<!--above code changes where the text appears on the page; start, end, center, left and right are all viable options -->
Let's Connect!
</h1>
<div class="container1">
<form
action="mailto:[email protected]"
method="post"
enctype="text/plain">
<div class="row">
<div class="col-25">
<label for="fname">Your Name</label>
</div>
<div class="col-75">
<input type="text" id="fname" name="Name" />
</div>
</div>
<div class="row">
<div class="col-25">
<label for="lname">Contact Info (phone and/or email)</label>
</div>
<div class="col-75">
<input type="text" id="lname" name="contact" />
</div>
</div>
<div class="row">
<div class="col-25">
<label for="subject">What can I create for you?</label>
</div>
<div class="col-75">
<textarea
id="subject"
name="message"
style="height: 200px"
></textarea>
</div>
</div>
<div class="row">
<input type="submit" value="Submit" />
</div>
</form>
<h2 style="text-align: center">
Thank you for your interest. I will contact you as soon as I am able to
discuss your project further.
</h2>
</div>
</div>
</li>
</ul>
</div>
<footer>
<p style="position: bottom; bottom: 0; left: 0; width: 100%; text-align: center;">
- - Author: Christopher Matthews / I See That You Know Your Judo Well LLC - - Copyright 2023 - -<a href="contact.html">Contact Me Here </a> - -</p>
</footer>
</body>
</html>