-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
61 lines (51 loc) · 1.61 KB
/
index.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
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>JAMES SCHOLZ</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<style>
body {top: 0; left: 0; width: 99%; height: 97%;
position: absolute; display: table}
p {display: table-cell; vertical-align: middle; text-align: center}
#timezone * {text-decoration: none;}
}
</style>
<script type="text/javascript">
// declare time zone formatting
let options = {
timeZone: 'US/Mountain',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
},
formatter = new Intl.DateTimeFormat([], options);
// set time
setInterval(
() => {
document.querySelector("#time").innerText = formatter.format(new Date());
}
, 1000)
</script>
</head>
<p>
<font size="7"><i><b>JAMES SCHOLZ</b></i></font> <br>
<br>
<img src="https://i.imgur.com/zy8BRWw.png" style="width:560px;"><br>
<br>
<span id=timezone>
<i>
<a href="https://24timezones.com/world_directory/current_salt_lake_city_time.php">TIME IN SALT LAKE CITY</a> - <span
id="time">0:00 PM</span> <a href="https://24timezones.com/time-zone/mt">MDT</a>
</i>
</span>
<br><br>
<a href="http://jvscholz.com/about.html">about</a> //
<a href="http://jvscholz.com/faq.html">faq</a> //
<a href="http://jvscholz.com/blog/index.html">blog</a> //
<a href="https://drive.google.com/file/d/17CnAyDkTUckt3jNoQjzsUmVlzP1jdp6t/view?usp=sharing">resume</a> //
<a href="http://jvscholz.com/contact.html">contact</a>
<br>
<br>
</body>
</html>