Skip to content

Commit 8518496

Browse files
save file
1 parent b90c0e6 commit 8518496

1 file changed

Lines changed: 80 additions & 22 deletions

File tree

contact.html

Lines changed: 80 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,49 @@
5454
{height:100%}
5555

5656
body
57-
{ font-family:arial;line-height:24px;height:calc(100% - 16px);
57+
{font-family:arial;line-height:24px;height:calc(100% - 16px);
5858
display:flex;flex-direction:column
5959
}
6060

6161

62-
#contact-form
63-
{display:flex;flex-direction:column;gap:20px;border:1px solid lightgray;padding:20px;border-radius:10px;background:whitesmoke}
6462

63+
.hdr
64+
{position:relative;margin-top:0;margin-bottom:20px;background:white;
65+
padding-bottom:10px;border-bottom:3px solid lightblue;height:50px
66+
}
67+
68+
.hdr-icon
69+
{ display:inline-block;text-align:center;background:whitesmoke;border-radius:5px;
70+
border:1px solid lightgray;padding:5px 3px 0px;cursor:pointer;margin-right:10px;
71+
min-width:50px
72+
}
73+
74+
.hdr-icon-img
75+
{}
76+
77+
.hdr-icon-label
78+
{margin:2px 0 0}
79+
80+
.hdr-title
81+
{position:absolute;left:0;right:0;z-index:0;margin:0 auto}
82+
83+
.hdr-date
84+
{float:right}
85+
86+
87+
88+
89+
90+
91+
#center
92+
{margin:20px auto;max-width:1000px}
93+
94+
95+
96+
#contact-form
97+
{display:flex;flex-direction:column;gap:20px;border:1px solid lightgray;padding:20px;border-radius:10px;background:whitesmoke;
98+
box-sizing:border-box}
99+
65100
#contact-form>div
66101
{display:flex;gap:20px}
67102

@@ -72,7 +107,7 @@
72107
{flex:1}
73108

74109
#text-root
75-
{width:500px;height:200px}
110+
{width:100%;height:200px}
76111

77112
textarea
78113
{width:100%;height:100%}
@@ -92,29 +127,52 @@
92127
<body>
93128

94129

95-
96-
<div id=contact-form>
130+
<div class=hdr>
131+
<img class=hdr-title src='/images/contact.png' style='height:80px;top:10px'>
132+
<time class=hdr-date datetime=2026-04-18>
133+
18 Apr 2026
134+
</time>
135+
</div hdr>
97136

98-
<div id=name-root>
99-
<div class=label>
100-
Name
101-
</div>
102-
<input id=name spellcheck=off autocomplete=false>
137+
138+
139+
<div id=center>
140+
141+
142+
143+
<div>
144+
If you’d like to get in touch, feel free to reach out by using the contact form below.
145+
Replies usually take 24–48 hours to process.
103146
</div>
104-
<div id=email-root>
105-
<div class=label>
106-
Email
147+
148+
149+
<div id=contact-form>
150+
151+
<div id=name-root>
152+
<div class=label>
153+
Name
154+
</div>
155+
<input id=name spellcheck=off autocomplete=false>
107156
</div>
108-
<input id=email spellcheck=off autocomplete=false>
109-
</div>
110-
<div id=text-root>
111-
<textarea>
112-
</textarea>
113-
</div>
114-
<div id=btns-root>
115-
<input value=send type=button>
157+
<div id=email-root>
158+
<div class=label>
159+
Email
160+
</div>
161+
<input id=email spellcheck=off autocomplete=false>
162+
</div>
163+
<div id=text-root>
164+
<textarea>
165+
</textarea>
166+
</div>
167+
<div id=btns-root>
168+
<input value=send type=button>
169+
</div>
170+
116171
</div>
117172

173+
174+
175+
118176
</div>
119177

120178

0 commit comments

Comments
 (0)