Add contact and min pages
parent
768a7872d8
commit
ed56945109
@ -0,0 +1,67 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Contact Information</title>
|
||||||
|
<style type="text/css">
|
||||||
|
@import url(css/elknernet.css);
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<blockquote>
|
||||||
|
<p><!-- insert quote here --></p>
|
||||||
|
<p class="author">-- <!-- insert author here --></p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<h1>Contact Information</h1>
|
||||||
|
|
||||||
|
<div class="split">
|
||||||
|
<div class="left">
|
||||||
|
<h2>Email:</h2>
|
||||||
|
<p>
|
||||||
|
<a href="mailto:jeff@elkner.net">jeff@elkner.net</a><br>
|
||||||
|
<a href="mailto:jeff.elkner@novawebdevelopment.org">jeff.elkner@novawebdevelopment.org</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
<h2>Address:</h2>
|
||||||
|
<address>
|
||||||
|
5041 7th Road South, #T1<br>
|
||||||
|
Arlington, VA 22204-2522
|
||||||
|
</address>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="split">
|
||||||
|
<div class="left">
|
||||||
|
<h2>Phone:</h2>
|
||||||
|
<ul>
|
||||||
|
<li>703-998-3934 (home)</li>
|
||||||
|
|
||||||
|
<li>240-406-2906 (mobile <i>Note:</i> For text messages only! I don't answer
|
||||||
|
this phone.)</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
<h2>Other:</h2>
|
||||||
|
<ul>
|
||||||
|
<li>By appointment in my
|
||||||
|
<a href="https://ca.meet.coop/b/jef-a1f-1y7-7zr">virtual classroom</a> at
|
||||||
|
<a href="https://www.meet.coop/">Meet.coop</a>.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Copyright © 2023 Jeffrey Elkner</p>
|
||||||
|
<a href="http://validator.w3.org/check/referer">
|
||||||
|
<strong> HTML </strong> Valid! </a>
|
||||||
|
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3">
|
||||||
|
<strong> CSS </strong> Valid! </a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Min Page</title>
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
|
<script>
|
||||||
|
function init() {
|
||||||
|
let loc = window.location.href;
|
||||||
|
let HTMLvalidLinkStr = 'http://validator.w3.org/check?uri=' + loc;
|
||||||
|
let CSSvalidLinkStr = 'http://jigsaw.w3.org/css-validator/validator?uri=' +
|
||||||
|
loc + '?profile=css3';
|
||||||
|
document.getElementById("vLink1").setAttribute("href", HTMLvalidLinkStr);
|
||||||
|
document.getElementById("vLink2").setAttribute("href", CSSvalidLinkStr);
|
||||||
|
}
|
||||||
|
window.onload = init;
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Min Page</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a id="vLink1">
|
||||||
|
<strong> HTML </strong> Valid! </a>
|
||||||
|
<a id="vLink2">
|
||||||
|
<strong> CSS </strong> Valid! </a>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue