-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutMe.html
70 lines (69 loc) · 2.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="aboutMe.css">
</head>
<body>
<header class="header">
<a href="index.html" class="logo">Home</a>
<nav class="navbar">
<a href="aboutMe.html">About</a>
<a href="experience.html">Experience</a>
<a href="work.html">Work</a>
<a href="contactMe.html">Contact</a>
</nav>
</header>
<div class="main">
<div class="one">
<h1>About Me</h1>
<h3 style="margin-top: 2%;">Greetings,</h3>
<p style="margin-bottom: 3%; padding-top: 3%;">My keen interest in web development and User Interface/User Experience (UI/UX) design <br>
was ignited during my initiation into the realm of Software Defined Automation (SDA).</p>
<p style="margin-bottom: 3%;">My educational journey began at Samtse Higher Secondary School, where I completed my higher <br>
secondary studies in 2022. It was at this juncture that I was introduced to programming <br>
languages, particularly Python. Currently, my primary focus revolves around training AI models <br>
and enhancing their accuracy by feeding them with pertinent data.</p>
<p style="margin-bottom: 2%;">Allow me to share with you a list of technologies I have been actively engaged with:</p>
<div class="two">
<ul style="padding-top: 2%;">
<li>Pythin</li>
<li>pygame</li>
<li>HTML</li>
<li>CSS</li>
<li>Figma</li>
<li>Kaggle</li>
</ul>
</div>
</div>
<div class="sec">
<div class="rec1">
<div class="py">
<img id="py" src="python.svg" alt="">
</div>
<div class="pygame">
<img id="pygame" src="pygame.webp" alt="">
</div>
</div>
<div class="rec2">
<div class="html">
<img src="html.jpg" alt="" id="html">
</div>
<div class="css">
<img src="css1.png" alt="" id="css">
</div>
</div>
<div class="rec3">
<div class="figma">
<img src="figma.jpg" alt="" id="figma">
</div>
<div class="kaggle">
<img src="kaggle.png" alt="" id="kaggle">
</div>
</div>
</div>
</div>
</body>
</html>