-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (69 loc) · 2.72 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My courses in BYU, my projects(Github) and skills(LinkedIn)">
<meta name="author" content="Charles Hemedi" >
<meta property="og:title" content="Charles Hemedi.">
<meta property="og:type" content="website">
<meta property="og:image" content="images/wdd231.webp">
<meta property="og:url" content="https://Hemedi12.github.io/wdd231/index.html">
<title>Charles Hemedi</title>
<link rel="icon" href="images/favicon.ico" type="image/x-icon" >
<link rel="stylesheet" href="styles/styles.css" >
<link rel="preconnect" href="https://fonts.googleapis.com" >
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin >
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap" rel="stylesheet">
<script defer src="scripts/script.js"></script>
</head>
<body>
<header>
<div class="profile">
<img src="images/wdd231.webp" alt="My picture Hemedi" />
<h1>Charles Hemedi</h1>
</div>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="chamber/directory.html">Chamber</a></li>
<li><a href="https://github.com/Hemedi12">GitHub Profile</a></li>
<li><a href="https://www.linkedin.com/in/hemedi-charles-9a6385a2/">LinkedIn</a></li>
</ul>
<button class="hamburger">☰</button>
<!-- Hamburger button for mobile -->
</nav>
</header>
<main>
<section class="course-work">
<h2>Course Work</h2>
<ul>
<li><a href="#"> Web and Computer Programming</a></li>
<li><a href="#">Web Development</a></li>
<li><a href="#">Software Development</a></li>
</ul>
</section>
<section class="location">
<h2>Gitega, Burundi</h2>
<img src="images/gitega.webp" alt="gitega city" />
<p>Gitega City</p>
</section>
<section class="certificates">
<h2>Web and Computer Programming Certificate</h2>
<h3 id="total-credits">Total credits: 0</h3>
<div class="course-filter">
<button id="all">All</button>
<button id="cse">CSE</button>
<button id="wdd">WDD</button>
</div>
<div class="courses" id="course-container"></div>
</section>
</main>
<footer id="main-footer">
<p id="country">
©<span id="currentyear"></span> Charles Hemedi, Burundi
</p>
<p id="lastModified">Last Updated:</p>
</footer>
</body>
</html>