-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoals.html
More file actions
38 lines (38 loc) · 1.16 KB
/
goals.html
File metadata and controls
38 lines (38 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mainstyles.css">
<title>Academic Goals/Achievements</title>
</head>
<body>
<header>
<h1>Academic Goals and Achievements</h1>
</header>
<nav>
<a href="index.html">Profile</a>
<a href="goals.html">Goals/Achievements</a>
<a href="contacts.html">Contacts</a>
</nav>
<div class="container">
<h2>Goals</h2>
<ul>
<li>Complete my degree with honors.</li>
<li>Participate in an internship program.</li>
<li>Join academic clubs and societies.</li>
<li>Master coding and develop webs.</li>
</ul>
<h2>Achievements</h2>
<ul>
<li>Dean's List for 2024.</li>
<li>Completed a research project on AI.</li>
<li>Published an article in a student journal.</li>
<li>Acquired skills of c programming, Web development.</li>
</ul>
</div>
<footer class="footer">
<p>© EL FATI 2024</p>
</footer>
</body>
</html>