-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
229 lines (140 loc) · 5.89 KB
/
contact.html
File metadata and controls
229 lines (140 loc) · 5.89 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>
Contact Us
</title>
<meta name=description content='ext-code.com offers a suite of tools for programmers : code editors, Git utilities, SEO diagnostics, and more, alongside a technical blog and curated shop for dev essentials. Built for clarity, control, and deep understanding.'>
<base href='https://ext-code.com/'>
<link rel="canonical" href="https://ext-code.com/index.html">
<meta name=viewport content='width=device-width, initial-scale=1'>
<link rel=icon href='favicon.ico'>
<script type="application/ld+json">
{
"@context" : "https://schema.org",
"@type" : "Organization",
"name" : "Your Business Name",
"url" : "https://ext-code.com",
"email" : "hello@ext-code.com",
"contactPoint" : [{
"@type" : "ContactPoint",
"contactType" : "customer support",
"email" : "hello@ext-code.com"
}]
}
</script>
<script src='https://libs.ext-code.com/js/dom/component/v3.0/component.js?hdr'></script>
<script>
function ready(){
}//ready
</script>
<style>
html
{height:100%}
body
{font-family:arial;line-height:24px;height:calc(100% - 16px);
display:flex;flex-direction:column
}
.hdr
{position:relative;margin-top:0;margin-bottom:20px;background:white;
padding-bottom:10px;border-bottom:3px solid lightblue;height:50px
}
.hdr-icon
{ display:inline-block;text-align:center;background:whitesmoke;border-radius:5px;
border:1px solid lightgray;padding:5px 3px 0px;cursor:pointer;margin-right:10px;
min-width:50px
}
.hdr-icon-img
{}
.hdr-icon-label
{margin:2px 0 0}
.hdr-title
{position:absolute;left:0;right:0;z-index:0;margin:0 auto}
.hdr-date
{float:right}
#center
{margin:20px auto;max-width:1000px}
#contact-form
{display:flex;flex-direction:column;gap:20px;border:1px solid lightgray;padding:20px;border-radius:10px;background:whitesmoke;
box-sizing:border-box;margin-top:30px}
#contact-form>div
{display:flex;gap:20px}
#contact-form .label
{width:120px;text-align:right}
#name,#email
{flex:1}
#text-root
{width:100%;height:200px}
textarea
{height:100%;box-sizing:border-box;flex:1}
[value=send]
{width:120px}
input
{font-size:16px;padding:5px 10px}
input[type=button]
{cursor:pointer}
.spc
{flex:1}
.item
{display:inline-flex;align-items:center;text-align:center;background:buttonface;
border-radius:3px;border:1px solid lightgray;padding:5px 7px;
}
.date
{position:absolute;top:5px;right:5px;
}
a
{color:blue;}
a:visited
{color:blue;}
</style>
</head>
<body>
<div class=hdr>
<div class=item>
<a href='/' >
home
</a>
</div>
<img class=hdr-title src='/images/contact.png' style='height:80px;top:-10px'>
<time class=hdr-date datetime=2026-04-18>
18 Apr 2026
</time>
</div hdr>
<div id=center>
<div>
If you’d like to get in touch, feel free to reach out by using the contact form below.
Replies usually take 24–48 hours to process.
</div>
<div id=contact-form>
<div id=name-root>
<div class=label>
Name
</div>
<input id=name spellcheck=off autocomplete=false>
</div>
<div id=email-root>
<div class=label>
Email
</div>
<input id=email spellcheck=off autocomplete=false>
</div>
<div id=text-root>
<div class=label>
Message
</div>
<textarea>
</textarea>
</div>
<div id=btns-root>
<div class=spc>
</div>
<input value=send type=button>
</div>
</div>
</div>
<div class=spc>
</div>
<site-ftr component=grp_root></site-ftr>
</body>
</html>