-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
74 lines (70 loc) · 2.91 KB
/
home.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Responsive web design</title>
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<link rel="stylesheet" href="style.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>
<style>
@font-face {
font-family: "Andada Pro";
src: url("fonts/andada-pro-regular.ttf") format("truetype");
}
</style>
</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</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<h1>Hello!</h1>
<h2>My name is Kuenzang Rabten.</h2>
<h3>Currently pursuing Bachelors <br>of Engineering in <br>Software Engineering.</h3>
<button class="frame">
<div class="circle"></div>
<img src="sticker (2).webp" alt="Image Description">
<div class="text">“I can do whatever I <br>want to do today.”</div>
</button>
<button class="last">
<div class="phoneicon">
<i class="fa-solid fa-phone fa-flip" style="color: #00040a;"></i>
<span>+975 - 77306194</span>
</div>
<div class="phoneicon">
<i class="fa-brands fa-github fa-beat" style="color: #010813;"></i>
<span>Rabtens</span>
</div>
<div class="phoneicon">
<i class="fa-solid fa-envelope fa-beat" style="color: #000000;"></i>
<span>[email protected]</span>
</div>
<div class="phoneicon">
<i class="fa-solid fa-location-dot fa-beat" style="color: #010204;"></i>
<span>Gedu College of Business Studies</span>
</div>
<div class="phoneicon">
<i class="fa-brands fa-twitter fa-beat" style="color: #00040a;"></i>
<span>@RabtenKuenzang</span>
</div>
<div class="phoneicon">
<i class="fa-brands fa-instagram fa-beat" style="color: #00060f;"></i>
<span>rabtens_12345</span>
</div>
<div class="phoneicon">
<i class="fa-brands fa-facebook fa-beat" style="color: #00040a;"></i>
<span>Kuenzang Rabten</span>
</div>
</button>
</body>
</html>