-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
120 lines (108 loc) · 3.81 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Hi, My name is Steve. I build (and break) things on the web."
/>
<link rel="icon" type="image/x-icon" href="./assets/images/icons/favicon.ico" />
<!-- Open Graph -->
<meta property="og:title" content="Stephan Lamoureux" />
<meta property="og:site_name" content="Portfolio" />
<meta property="og:url" content="https://wheresteve.codes" />
<meta
property="og:description"
content="Hi, My name is Steve. I build (and break) things on the web."
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/stephanlamoureux/v1/main/assets/images/profile/profile-pic.webp"
/>
<!-- Open Graph -->
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="./css/styles.css" />
<link rel="stylesheet" type="text/css" href="./css/contact.css" />
<link rel="stylesheet" type="text/css" href="./css/responsive.css" />
<link rel="stylesheet" type="text/css" href="./css/light.css" />
<link rel="stylesheet" type="text/css" href="./css/hamburgers.css" />
<link rel="stylesheet" type="text/css" href="./css/anicollection.css" />
<link
rel="stylesheet"
type="text/css"
href="./assets/fontawesome-pro-5.7.2-web/css/fontawesome-initial.css"
/>
<!-- Stylesheets -->
<!-- Components -->
<!-- <script src="../components/myHeader.js" defer></script> -->
<script src="./components/headerDivider.js" defer></script>
<script src="./components/desktopNav.js" defer></script>
<script src="./components/mobileNav.js" defer></script>
<script src="./components/myFooter.js" defer></script>
<script src="./components/footerDivider.js" defer></script>
<!-- Components -->
<title>Stephan Lamoureux | Contact</title>
</head>
<body>
<header-divider></header-divider>
<desktop-nav></desktop-nav>
<header>
<div class="center-header">
<h1 class="header-title">
<span class="header-gradient">
<span class="spacing">Stephan <span class="hidden">Lamoureu</span></span
><span class="hidden">x</span></span
>
<span class="show header-gradient">L.</span>
</h1>
<p class="header-sub">
<span id="typed2" class="typed2"></span>
</p>
</div>
<mobile-nav></mobile-nav>
</header>
<main>
<!-- Contact Section -->
<section id="contact" class="contact">
<hr class="line" />
<h2 class="section-header">Contact Me</h2>
<hr class="line marg-bottom" />
<div class="subheader">
<p>All love or hate mail can be directed below 👇</p>
</div>
<div class="form-container">
<form id="contact-form">
<fieldset>
<input type="hidden" name="contact_number" />
<label for="name" class="contact-label">Name</label>
<input type="text" id="name" name="user_name" required />
<label for="email" class="contact-label">E-mail</label>
<input type="email" id="email" name="user_email" required />
</fieldset>
<fieldset class="message">
<label class="contact-label">Message</label>
<textarea
id="message"
name="message"
rows="7"
required
placeholder="Say Hey!"
></textarea>
</fieldset>
<input type="submit" value="Send" class="form-submit" id="submit" />
</form>
</div>
</section>
<!-- End Contact Section -->
</main>
<my-footer></my-footer>
<footer-divider></footer-divider>
<!-- Scripts -->
<script src="./scripts/anijs-master/dist/anijs-min.js" defer></script>
<script src="./scripts/main.js" defer type="module"></script>
<script src="./scripts/email.js" defer type="module"></script>
<script src="./scripts/typed2.js" defer type="module"></script>
</body>
</html>