-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
47 lines (46 loc) · 2.6 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About me page</title>
<link rel="stylesheet" href="style1.css">
</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="#">About me</a></li>
<li><a href="resume.html">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>About me</u></h1>
<p>Here are some information about me.</p>
<div class="textcontainer">
<button class="academic">
<h1 style="font-size: 28px; margin-top: 1%; margin-left: 0%;">Academic Journey:</h1>
<p style="font-size: 24px; margin-left: 2%; font-weight: lighter;">My passion for <br>software engineering <br>began during my early <br>academic years, and <br>I've been on a mission <br>to absorb as much <br>knowledge as possible. <br>I'm excited to apply the <br>theories I've learned in <br>classes such as UI & UX <br>designing to real-world <br>projects.</p>
</button>
<button class="passion">
<h1 style="font-size: 28px; margin-top: 1%; margin-left: 0%;">Passion for Problem Solving:</h1>
<p style="font-size: 24px; margin-left: 2%; font-weight: lighter;">I'm driven by the potential for <br>positive change through <br>innovation, and I aspire to tackle <br>real-world challenges, enhance <br>accessibility, and <br>contribute to <br>societal improvement. As a <br>software student, I'm dedicated <br>to refining my skills, eager to <br>translate these ambitions into <br>meaningful contributions in my <br>future career.</p>
</button>
<button class="career">
<h1 style="font-size: 28px; margin-top: 1%; margin-left: 0%;">Career Aspirations:</h1>
<p style="font-size: 24px; margin-left: 2%; font-weight: lighter;">My passion for <br>software engineering <br>began during my early <br>academic years, and <br>I've been on a mission <br>to absorb as much <br>knowledge as possible. <br>I'm excited to apply the <br>theories I've learned in <br>classes such as UI & UX <br>designing to real-world <br>projects.</p>
</button>
</div>
</body>
</html>