-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
76 lines (76 loc) · 3.42 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume web design</title>
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fa-solid fa-bars" style="color: #00040a;"></i>
</label>
<label class="logo">Rabtens</label>
<ul>
<li><a class="active" href="home.html">Home</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="#">Resume</a></li>
</ul>
</nav>
<style>
@font-face {
font-family: 'Inter';
src: url('fonts/inter.woff2') format('woff2'),
url('fonts/inter.woff') format('woff');
}
</style>
<h1><u>Resume</u></h1>
<h2>Education</h2>
<div class="edu-container">
<span class="edu" style="margin-top: 20px; display: block;">Bachelors of Engineering in</span>
<span class="edu" style="margin-top: 15px; display: block;">Software Engineering at</span>
<span class="edu" style="margin-top: 15px; display: block;">College of Science and Technology.</span>
</div>
<h3>Projects</h3>
<div class="skills-container">
<span class="skills" style="margin-top: 20px; display: block;">1. Created an user persona.</span>
<span class="skills" style="margin-top: 15px; display: block;">2. Completed 100 python Tasks.</span>
<span class="skills" style="margin-top: 15px; display: block;">3. Data per-processing and cleaning.</span>
<span class="skills" style="margin-top: 15px; display: block;">4. Currently creating portfolio and resume design.</span>
</div>
<h4>Interest</h4>
<div class="icon">
<button class="cri">
<i class="fa-solid fa-baseball fa-beat-fade" style="color: #00040a; font-size: 60px;"></i>
</button>
<button class="vball">
<i class="fa-solid fa-volleyball fa-beat-fade" style="color: #000205; font-size: 60px;"></i>
</button>
<button class="game">
<i class="fa-solid fa-gamepad fa-beat-fade" style="color: #00040a; font-size: 60px;"></i>
</button>
</div>
<div class="icoonn">
<button class="footy">
<i class="fa-regular fa-futbol fa-beat-fade" style="color: #00060f; font-size: 60px;"></i>
</button>
<button class="tv">
<i class="fa-solid fa-tv fa-beat-fade" style="color: #00040a; font-size: 60px;"></i>
</button>
<button class="prog">
<i class="fa-brands fa-python fa-beat-fade" style="color: #000000; font-size: 60px;"></i>
</button>
</div>
<h5>Skills</h5>
<div class="skillss">
<span class="skill" style="margin-top: 20px; display: block;">1. Web development (HTML, CSS).</span>
<span class="skill" style="margin-top: 15px; display: block;">2. Programming languages (Python).</span>
<span class="skill" style="margin-top: 15px; display: block;">3. Teamwork and communication.</span>
<span class="skill" style="margin-top: 15px; display: block;">4. Time management.</span>
</div>
</body>
</html>