-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathskills.html
More file actions
90 lines (81 loc) · 3.41 KB
/
Copy pathskills.html
File metadata and controls
90 lines (81 loc) · 3.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[saintsHr] Skills</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/profile.jpg" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="css/skills.css">
<link rel="stylesheet" href="css/style.css">
<!-- Google Fonts -->
<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=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tilt+Warp&display=swap" rel="stylesheet">
</head>
<body>
<div class="background"></div>
<header>
<h1 id="title">Portfolio</h1>
<nav>
<a href="index.html"><img src="https://img.icons8.com/liquid-glass/256/exterior.png" alt="home"></a>
<a href="projects.html"><img src="https://img.icons8.com/liquid-glass/256/idea.png" alt="projects"></a>
<a href="skills.html"><img src="https://img.icons8.com/liquid-glass/256/brain.png" alt="skills"></a>
<a href="certificates.html"><img src="https://img.icons8.com/liquid-glass/256/certificate.png" alt="certificates"></a>
</nav>
</header>
<main>
<section>
<h2>C</h2>
<ul>
<li><strong>Experience:</strong> 4 Years</li>
<li><strong>Level:</strong> Advanced</li>
<li><strong>Areas:</strong> Desktop, Kernels, Games, Embedded</li>
<li><strong>Knowledge:</strong> pointer, memory management, STL,optimization</li>
<li><strong>Tools:</strong> GCC, MinGW, Make, OpenGL, ncurses</li>
</ul>
</section>
<section>
<h2>C++</h2>
<ul>
<li><strong>Experience:</strong> 2 Years</li>
<li><strong>Level:</strong> Intermediate</li>
<li><strong>Areas:</strong> Desktop, Games</li>
<li><strong>Knowledge:</strong> POO, pointer, memory management, STL, optimization</li>
<li><strong>Tools:</strong> G++, MinGW, Make, SFML, OpenGL</li>
</ul>
</section>
<section>
<h2>Assembly</h2>
<ul>
<li><strong>Experience:</strong> 1 Years</li>
<li><strong>Level:</strong> Begginner</li>
<li><strong>Areas:</strong> Desktop, Kernels</li>
<li><strong>Knowledge:</strong> Labels, Registers, Linking, Basic Operations</li>
<li><strong>Tools:</strong> GRUB</li>
</ul>
</section>
<section>
<h2>HTML</h2>
<ul>
<li><strong>Experience:</strong> 6 Months</li>
<li><strong>Level:</strong> Begginner</li>
<li><strong>Areas:</strong> Web</li>
<li><strong>Knowledge:</strong> Lists, Divs, Buttons, Images</li>
<li><strong>Tools:</strong> None</li>
</ul>
</section>
<section>
<h2>CSS</h2>
<ul>
<li><strong>Experience:</strong> 6 Months</li>
<li><strong>Level:</strong> Begginner</li>
<li><strong>Areas:</strong> Web</li>
<li><strong>Knowledge:</strong> Borders, Fonts, Colors, Images, Padding, Gaps, Margins</li>
<li><strong>Tools:</strong> None</li>
</ul>
</section>
</main>
</body>
</html>