-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass5a.html
92 lines (86 loc) · 3.52 KB
/
class5a.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="keywords" content="profile, raymond">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Personal Home Page</title>
<link rel="stylesheet" type="text/css" href="versionA.css">
<link href="https://fonts.googleapis.com/css?family=Lacquer|Shadows+Into+Light&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div id="cover">
<h1>Raymond</h1>
<h3>Hi everyone!</h3>
<div id="nav" class='d-none d-s-table-cell'>
<nav>
<span><a href='./versionA.html'>Home</a></span>
<span><a href='#hobby'>My hobby</a></span>
<span><a href='https://www.google.com'>Google</a></span>
<span><a href='https://www.yahoo.com'>Yahoo</a></span>
</nav>
</div>
<div id="nav" class='d-s-none d-table-cell'>
<nav>
<span><a href='./versionA.html'>Home</a></span><br>
<span><a href='#hobby'>My hobby</a></span><br>
<span><a href='https://www.google.com'>Google</a></span>
<span><a href='https://www.yahoo.com'>Yahoo</a></span>
</nav>
</div>
</div>
</header>
<div id="main">
<div id="intro">
<div class='col-12 col-s-3 mp-0'>
<div>
<img class="" src="propic.jpg">
</div>
</div>
<div class="col-12 col-s-9 mp-0">
<div class='flex-hd'><h4>About me</h4></div>
<div>
<p>Hi All! I am currently a student</p>
</div>
</div>
</div>
<section>
<span><h3>My #hashtag</h3></span>
<div id="hash">
<span>Energetic</span>
<span>Toxic</span>
<span>Detail-minded</span>
<span>Creative</span>
</div>
</section>
<section id="hobby">
<h4>My hobby!</h5>
<ol>
<li>Reading</li>
<li>Watching movie</li>
<li>Eatting!! XD</li>
<li>Sleeping ZZZ</li>
</ol>
</section>
<section>
<h4>My CSE Grade</h4>
<table>
<thead>
<tr><th>Coure Code</th><th>Name</th><th class="d-none d-s-table-cell">Grade</th></tr>
</thead>
<tbody>
<tr><td>CSCI1130</td><td>Intro. to Computer using Java</td><td class="d-none d-s-table-cell">A-</td></tr>
<tr><td>CSCI2720</td><td>Building Web Applicaitons</td><td class="d-none d-s-table-cell">expect A XD</td></tr>
<tr><td>CSCI3120</td><td>Compiler Construction</td><td class="d-none d-s-table-cell">B</td></tr>
</tbody>
</table>
</section>
</div>
<footer>
<hr>
<p><b>Posted by:</b> Raymond</p>
<p><b>Last update at:</b> <time>7:00am</time> 01 Feb 2020</p>
</footer>
</body>
</html>