-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (55 loc) · 2.18 KB
/
Copy pathindex.html
File metadata and controls
68 lines (55 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<title>Exercise 1</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="block1">
<img src="MahPic.jpg" alt="My Picture" id="picture">
<br>
<div id="name">
<p class ="super">Andre M. Tuazon</p>
<p class ="sub">A Computer Science Sophomore</p>
<br>
</div>
<table>
<tr>
<td class="ques">Nickname</td>
<td class = "ans">Drey</td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr>
<td class="ques">Favorite CMSC Subject</td>
<td class = "ans">CMSC 57, because its topics are helpful in puzzle games, specifically, puzzles concerning paths, permutations, and combinations :)</td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr>
<td class="ques">Favorite GE</td>
<td class = "ans">Ethics 1, because the professor only required a short essay around 200 words to answer most exercises</td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr>
<td class="ques">Favorite Programming Language</td>
<td class = "ans">C, because that is what I coded most of the time in my college course which made me comfortable to use it</td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr>
<td class="ques">Favorite Food</td>
<td class = "ans">Spaghetti</td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<!--tr>
<td class="ques">Hobbies</td>
<td class = "ans">Playing Genshin Impact, Reading Manga and Light Novels, & Watching Anime</td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr>
<td class="ques">Childhood Dream</td>
<td class = "ans">Programmer</td>
</tr>
<tr><td colspan="2"><hr></td></tr-->
</table>
</div>
</body>
</html>