-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSession1_Activity.html
More file actions
101 lines (90 loc) · 3.02 KB
/
Session1_Activity.html
File metadata and controls
101 lines (90 loc) · 3.02 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Session1_Activity</title>
</head>
<body>
<h1>Hello Welcome to my Webpage!</h1>
<p><b>Name of Student</b> : Ace Alexander R. Ilog</p>
<p><b>Course Program</b>: BS Computer Engineering</p>
<p><b>Dream Career</b>: Become a Software Developer</p>
<br />
<p>My qoute:
<br />
<q>
Whatever I do, I'll always be me. I won't tone myself down to fit in.
</q>
</p>
<p>My hobbies:</p>
<ul>
<li>Playing Video games</li>
<li>Watching anime</li>
<li>Reading books</li>
</ul>
<p>What i Usually do after waking up:</p>
<ol>
<li>Clean myself up</li>
<li>Make a coffee</li>
<li>Existential Crisis</li>
</ol>
<p><b>My Favorite book</b>: <cite>The Subtle Art of not giving a Fuck</cite></p>
<details>
<Summary>
the Subtle Art of not giving a Fuck
</Summary>
<p>The Subtle Art of Not Giving a F*ck argues that individuals should seek to find meaning through what they find to be important and only engage in values that they can control.</p>
</details>
<br />
<table>
<caption><strong>Major Subjects</strong></caption>
<thead>
<tr>
<th>Subjects</th>
<th>Units</th>
</tr>
</thead>
<tbody>
<tr>
<td>Database</td>
<td>3
</td>
</tr>
<tr>
<td>Network Communication</td>
<td>3</td>
</tr>
<tr>
<td>Mobile Development</td>
<td>3</td>
</tr>
<tr>
<td>Feedback and Control System</td>
<td>3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>total</td>
<td><b>9 units</b></td>
</tr>
</tfoot>
</table>
<button>I like playing MOBA games</button>
<p>What is your favorite game?</p>
<input type="text">
<br>
<select name="" id="">
<option value="3">3</option>
<option value="2">2</option>
<option value="1">1</option>
</select>
<br>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"> here's some of my gameplay</a>
<br>
<p>Usually I do <mark>sleep</mark> a lot.</p>
<p>my favorite color is <del>blue</del> green.</p>
<p>I like to explore <ins>mountains and watch the scenery</ins></p>
<p>I learned a new thing called <sub>subscripted</sub> text.</p>
<p>there is also a inverse of it and its called <sup>superscripted</sup> text.</p>
</body>
</html>