-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (82 loc) · 2.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>William Chan</title>
<link rel="stylesheet" type="text/css" href="/oldstuff/css/main.css" />
<script
type="text/javascript"
src="/oldstuff/js/jquery-3.6.0.min.js"
></script>
<script type="text/javascript" src="/oldstuff/js/main.js"></script>
<!-- Media query for narrow browser width -->
<link
rel="stylesheet"
media="only screen and (max-width: 480px)"
href="/oldstuff/css/mobile.css"
/>
<!-- Media query for medium browser width -->
<link
rel="stylesheet"
media="only screen and (min-width: 481px) and (max-width: 960px)"
href="/oldstuff/css/tablet.css"
/>
<!-- Media query for full browser width -->
<link
rel="stylesheet"
media="only screen and (min-width: 961px)"
href="/oldstuff/css/desktop.css"
/>
<!-- Prevent smartphones from scaling the page by default -->
<meta name="viewport" content="initial-scale=1" />
</head>
<body>
<div class="container">
<header><h1>William Chan</h1></header>
<p class="sections" class="column1">
Hi! Welcome to William's Website! I hope you enjoy your time!
</p>
<ol class="sections" class="column2">
<!--
<li><a href="/oldstuff/index.html">UNIX Assignment</a></li>
<li><a href="/oldstuff/about_me.html">HTML Assignment</a></li>
<li><a href="/oldstuff/index.html">CSS Assignment</a></li>
<li>
<a href="/oldstuff/topic_of_interest.html">JQuery Assignment</a>
</li>
<li>
<a href="/oldstuff/user_experience_design.html"
>User Experience Assignment</a
>
</li>
<li><a href="/oldstuff/index.html">Responsive Design Assignment</a></li>
<li>
<a href="/oldstuff/professional_site.html">Bootstrap Assignment</a>
</li>
<li><a href="/oldstuff/photoshop.html">Photoshop Assignment</a></li>
<li>
<a href="/oldstuff/animated_gif.html">Animated GIF Assignment</a>
</li>
<li><a href="/oldstuff/video.html">Digital Video Assignment</a></li>
-->
<li><a href="/oldstuff/pass.html">NYU Daily Screener</a></li>
<li>
<a href="/oldstuff/calc.html">Calculator with Jquery/Vanilla JS</a>
</li>
<li><a href="/oldstuff/todolist.html">Simple Todo List (Buggy)</a></li>
<li><a href="/oldstuff/metazoo.html">Metazoo tool</a></li>
<li>
<a href="/oldstuff//targetfinder/index.html"
>Bitcoin Hash Target Calculator</a
>
</li>
<li><a href="/oldstuff/weather2/index.html">Weather Tool</a></li>
<li style="display: none">
<a href="/oldstuff/advice.html">Advice for myself (don't look)</a>
</li>
</ol>
<p class="sections" class="column3">Please enjoy my website!</p>
<div class="clear"></div>
</div>
</body>
</html>