-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-work.html
More file actions
52 lines (51 loc) · 2.43 KB
/
Copy pathmy-work.html
File metadata and controls
52 lines (51 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<div class="navbar">
<ul>
<li><a class="m-2" href="index.html">About Me</a></li>
<li><a class="m-2" href="my-work.html">My Work</a></li>
</ul>
</div>
<section class="m-3">
<h1>My Work</h1>
<section class = "school">
<h2>School Work</h2>
<table>
<tr>
<th>Class</th>
<th>Assignment</th>
</tr>
<tr>
<td> <strong> English </strong> </td>
<td> <a href="https://docs.google.com/document/d/1gnVRtHePs4sZwFsTRpNMa2dcrJWh1CUbYIotjIfwuiE/edit?usp=sharing">Essay on the novel <em>All the Pretty Horses</em></a> </td>
</tr>
<tr>
<td> <strong> CS </strong> </td>
<td> <img src="cscode.jpeg" alt="image of cs project"/> </td>
</tr>
</table>
</section>
<br>
<section class="personal">
<h2>Personal Work</h2>
<p>As a student, most of my work is for school but I have some old projects I did in high school.</p>
<p>Some of the things I've done on my own:</p>
<ul>
<li> <a href="https://docs.google.com/document/d/1woWHO833ttM28zD87iV-H8igONoTHWcbY_EtvUDdN5M/edit?usp=sharing">Research Proposal on the Connection Between Diabetes and Social Capital</a> </li>
<img src="76F4B73D-6EB0-4A71-AB2D-44E183C39886.jpg" alt="color pencil drawing of horse"/>
<li> <em>A color pencil drawing of a horse</em> </li>
<img src="image0.jpg" alt="scratch art of dragon"/>
<li> <em>One of my favorite pieces of a dragon, it took me a long time to do</em> </li>
</ul>
</section>
</section>
</body>
</html>