-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgoals.html
More file actions
32 lines (30 loc) · 1.32 KB
/
goals.html
File metadata and controls
32 lines (30 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<title>DogWaterDev - Goals</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="assets/img/titleimg.jpg">
<script src="script.js"></script>
</head>
<body>
<div id="navbar" class="navbar">
<a class="navelement" href="index.html">About</a>
<a class="navelement" href="projects.html">Projects</a>
<a class="navelement active">Goals</a>
<a class="navelement" href="contact.html">Contact</a>
</div>
<div>
<h1 id="agoals">Goals</h1>
<p>In order to complete my projects, I always have to set goals for myself.</p>
<li>My current goals for 2024 are:
<ul>Finish the first complete version of the Durian language</ul>
<ul>The steps needed for this are:
<li class="internal">Finish the parser</li>
<li class="internal">Complete semantic analysis</li>
<li class="internal">Create a class to convert this analyzed code into Assembly</li>
<li class="internal">Compile, then link those files to the OS until I have a native executable</li>
</ul>
</li>
</div>
</body>
</html>