-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
180 lines (168 loc) · 6.43 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-QQ5LTKG68L"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-QQ5LTKG68L");
</script>
<!-- SEO -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="description"
content="Easy, smooth & flawless IPv4 calculations including VLSM with offline mode and cross platform availability."
/>
<meta
property="og:description"
content="Easy, smooth & flawless IPv4 calculations including VLSM with offline mode and cross platform availability."
/>
<meta
property="og:image"
content="https://eazyip.github.io/assets/img/fb_large_thumb_compressed.png"
/>
<meta
property="og:title"
content="Eazy IP: The network engineer toolkit"
/>
<meta property="og:url" content="https://eazy-ip.com" />
<!-- Style -->
<link rel="icon" href="/favicon.png" type="image/png" sizes="32x32" />
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/home.css" />
<link
rel="stylesheet"
href="/css/fontawesome_free_5.13.0_we_all.min.css"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Goldman&family=Nunito:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<!-- PWA -->
<link rel="manifest" href="/manifest.json" />
<link
rel="apple-touch-icon"
href="/assets/img/logo22.png"
sizes="144x144"
/>
<meta name="theme-color" content="#1167b1" />
<title>Eazy IP | Contact</title>
</head>
<body>
<header>
<nav>
<div class="max-width-container">
<div>
<a id="" class="logo" href="/index.html">Eazy IP</a>
</div>
<div id="nav-options">
<a id="js-nav-home" class="" href="/index.html">Home</a>
<a id="js-nav-about" class="" href="/about.html"
>About</a
>
<a id="js-nav-contact" class="" href="/contact.html"
>Contact</a
>
<a id="js-nav-app" class="inactive-app" href="/app.html"
>APP</a
>
</div>
</div>
</nav>
</header>
<main>
<div class="pad1xy">
<form method="post" id="contact-form" class="pad1xy">
<input
name="_redirect"
type="hidden"
value="https://eazyip.github.io"
/>
<input
type="text"
name="name"
id="name"
class="block centered-block"
placeholder="Your name"
aria-label="Your name"
required
/>
<input
type="email"
name="email"
id="email"
class="block centered-block"
placeholder="Your Email"
aria-label="Your Email"
required
/>
<textarea
name="msg"
id="msg"
cols="50"
rows="15"
maxlength="1000"
placeholder="Message"
aria-label="Message"
required
></textarea>
<div id="js-contact-msg-status"></div>
<input
name="_formsubmit_id"
type="text"
style="display: none"
/>
<button
type="submit"
name="contact_msg"
id="js-contact-submit-btn"
class="btn"
>
Send
</button>
</form>
</div>
</main>
<footer>
<div class="max-width-container">
<div>
<a href="/index.html" class="logo">Eazy IP</a>
<p>Copyright <i class="fal fa-copyright"></i>2021</p>
</div>
<div>
<a href="/app.html">APP</a>
<a href="/index.html">Home</a>
<a href="/about.html">About</a>
<a href="/contact.html">Contact</a>
<a href="#">Offer support</a>
</div>
<div>
<a href="https://linkedin.com/in/medilies" target="_Blank"
><i class="fab fa-linkedin fa-1x fa-2x"></i>/medilies</a
>
<a href="https://github.com/medilies" target="_Blank"
><i class="fab fa-github fa-2x"></i>/medilies</a
>
<a href="mailto:medilies.contact@gmail.com" target="_Blank"
><i class="fal fa-at fa-2x"></i
>medilies.contact@gmail.com</a
>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<!-- <script src="https://cdn.jsdelivr.net/npm/darkmode-js@1.5.7/lib/darkmode-js.min.js"></script> -->
<script src="/js/index.js"></script>
<script src="/js/contact.js"></script>
</body>
</html>