-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkills.html
81 lines (74 loc) · 2.61 KB
/
Skills.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
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Skills</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<nav class="navbar">
<a href="Portfolio.html">Home</a>
<a href="about.html">About</a>
<a href="skills.html" class="active">Skills</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact info</a>
</nav>
</div>
<header>
<h1>My Dual Skills Pathway</h1>
<p31>Bridging Cultures with Languages & Building Digital Experiences with Code.</p31>
</header>
<section id="linguistic-pathway">
<h2>Linguistic Journey</h2>
<ul31 class="styled-list">
<li>Persian: Native</li>
<li>English: Near-native (IELTS-8.5)</li>
<li>French: Intermediate</li>
<li>Danish: Intermediate (Module 4)</li>
</ul31>
</section>
<section id="webdev-pathway">
<h3>Technical Proficiency</h3>
<div class="skills-category">
<h4>Front-end</h4>
<div class="skill">
<label for="html">HTML:</label>
<progress id="html" max="100" value="75">75%</progress>
</div>
<div class="skill">
<label for="css">CSS:</label>
<progress id="css" max="100" value="75">75%</progress>
</div>
<div class="skill">
<label for="javascript">JavaScript:</label>
<progress id="javascript" max="100" value="45">45%</progress>
</div>
</div>
<div class="skills-category">
<h4>Tools & Environments</h4>
<div class="skill">
<label for="visual-studio-code">Visual Studio Code:</label>
<progress id="visual-studio-code" max="100" value="80">80%</progress>
</div>
<div class="skill">
<label for="git">Git:</label>
<progress id="git" max="100" value="30">30%</progress>
</div>
</div>
<div class="skills-category">
<h4>Other</h4>
<div class="skill">
<label for="matlab">MATLAB:</label>
<progress id="matlab" max="100" value="80">80%</progress>
</div>
<div class="skill">
<label for="python">Python:</label>
<progress id="python" max="100" value="60">60%</progress>
</div>
</div>
</section>
<footer>
<a href="#projects-page-link">See my work in action!</a>
</footer>