-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (58 loc) · 1.74 KB
/
Copy pathindex.html
File metadata and controls
71 lines (58 loc) · 1.74 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
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Developer Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- =====================
NAVIGATION BAR
===================== -->
<nav>
Developer Dashboard
<span class="live-badge">⚡ LIVE ON AZURE</span>
</nav>
<!-- =====================
MAIN CONTENT AREA
===================== -->
<div class="container">
<!-- Profile Card -->
<div class="profile-card">
<h2>Ibrahim Danjuma</h2>
<p class="role">Microsoft Learn Student Ambassador · Full-Stack Developer</p>
<p>Building for the cloud. Passionate about empowering students
through technology, community, and open source.</p>
</div>
<!-- Skills Section -->
<div class="skills-section">
<h3>My Skills</h3>
<div class="skills-grid">
<span>HTML</span>
<span>CSS</span>
<span>VS Code</span>
<span>GitHub</span>
<span>Azure</span>
<span>JavaScript</span>
</div>
</div>
<!-- Learning Progress -->
<div class="progress-section">
<h3>Learning Progress</h3>
<div class="progress-item">
<p><span>AZ-900 Azure Fundamentals</span><span>75%</span></p>
<div class="progress-bar">
<div class="progress-fill" style="width: 75%"></div>
</div>
</div>
<div class="progress-item">
<p><span>GitHub & Version Control</span><span>85%</span></p>
<div class="progress-bar">
<div class="progress-fill" style="width: 85%"></div>
</div>
</div>
</div>
</div><!-- end container -->
</body>
</html>