-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (144 loc) · 5.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saintur Batkhuu</title>
<link rel="shortcuts icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="body">
<div class="sidebar">
<div class="name-section">
<img class="avatar" src="unnamed.jpeg" alt="html validator" />
<div>
<h3>Saintur Batkhuu</h3>
<small>saintur.batkhuu@miu.edu</small>
</div>
</div>
<ul>
<li><a href="#html-validation"><strong>Lab 01</strong> - HTML & CSS Validation</a></li>
<li><a href="./lab02/aboutme.html"><strong>Lab 02</strong> - About me</a></li>
<li><a href="./lab03/table.html"><strong>Lab 03</strong> - Tablesheet</a></li>
<li><a href="./lab04/form.html"><strong>Lab 04</strong> - Form Layout</a></li>
<li><a href="./lab05/js.html"><strong>Lab 05</strong> - JavaScript</a></li>
<li><a href="./lab06/closure.html"><strong>Lab 06</strong> - EC & Closure</a></li>
<li><a href="./lab07/context.html"><strong>Lab 07</strong> - Call Context</a></li>
<li><a href="./lab08/inheritance.html"><strong>Lab 08</strong> - Inheritance</a></li>
<li><a href="./lab09/class.html"><strong>Lab 09</strong> - Class</a></li>
<li><a href="./mid/mid.html">Midterm</a></li>
<li><a href="./lab10/node.html"><strong>Lab 10</strong> - Node Introduction</a></li>
<li><a href="./lab11/server.html"><strong>Lab 11</strong> - Node NPM Modules</a></li>
<li><a href="./lab12/express.html"><strong>Lab 12</strong> - Express</a></li>
<li><a href="./lab13/rest.html"><strong>Lab 13</strong> - REST</a></li>
</ul>
</div>
<div class="main-body">
<h1>Labs</h1>
<div class="grids">
<div class="grid">
<a class="card" href="#html-validation">
<strong>Lab 01</strong>
<span>HTML & CSS Validation</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab02/aboutme.html">
<strong>Lab 02</strong>
<span>About me</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab03/table.html">
<strong>Lab 03</strong>
<span>Tablesheet</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab04/form.html">
<strong>Lab 04</strong>
<span>Form Layout</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab05/js.html">
<strong>Lab 05</strong>
<span>JavaScript</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab06/closure.html">
<strong>Lab 06</strong>
<span>EC & Closure</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab07/context.html">
<strong>Lab 07</strong>
<span>Call Context</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab08/inheritance.html">
<strong>Lab 08</strong>
<span>Inheritance</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab09/class.html">
<strong>Lab 09</strong>
<span>Class</span>
</a>
</div>
<div class="grid">
<a class="card blue" href="./mid/mid.html">
<strong>Midterm</strong>
<span></span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab10/node.html">
<strong>Lab 10</strong>
<span>Node Introduction</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab11/server.html">
<strong>Lab 11</strong>
<span>Node NPM Modules</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab12/express.html">
<strong>Lab 12</strong>
<span>Express</span>
</a>
</div>
<div class="grid">
<a class="card" href="./lab13/rest.html">
<strong>Lab 13</strong>
<span>REST</span>
</a>
</div>
</div>
<div>
<h1 id="html-validation">1. HTML Validation</h1>
<a href="https://validator.w3.org/nu/?doc=https://sainturb.github.io/wap/" target="_blank">
<img width="64" src="HTML-checker.png" alt="html validator" />
</a>
</div>
<div>
<h1 id="css">2. CSS Validation</h1>
<a href="https://jigsaw.w3.org/css-validator/validator?uri=https://sainturb.github.io/wap/" target="_blank">
<img width="64" src="CSS-checker.png" alt="css validator" />
</a>
<p>
Simple style edit has been done.
</p>
</div>
</div>
</div>
</body>
</html>