-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Portfolio</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<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">
<link rel="stylesheet" href="style1.css"> <!-- Link to external CSS file -->
</head>
<style>
.telegram-icon {
color: #0088cc
; /* Telegram color */
font-size: 45px; /* Icon size */
text-decoration: none; /* No underline */
border-radius: 50%; /* Make it circular */
}
.telegram-icon :hover {
color: #f39c12; /* Change this to your desired hover color */
}
</style>
<body>
<div class="main">
<div class="navbar">
<img src="hayre logo.png" class="logo">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">SKILLS</a></li>
<li><a href="#">MY WORKS</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</div>
<div class="info">
<h3>Hi 👋, I'm <span>hayredin Awel</span>.</h3>
<h1><span>W</span>EB <span>D</span>ESIGNER</h1>
<h3>Web designer and developer from California,Ethiopian.
I create <br> websites to do businesses do better <br> online.</h3>
<a href="#">Hire Me</a>
</div>
<div class="image">
<img src="hayre.png" class="girl">
</div>
<div class="social-icons">
<a href="https://t.me/hayre32" class="telegram-icon" target="_blank">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="https://www.facebook.com/hayre32" target="_blank" class="social-icon" title="facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://twitter.com/hayre32" target="_blank" class="social-icon" title="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.instagram.com/hayreta32" target="_blank" class="social-icon" title="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="#" target="_blank" class="social-icon" title="LinkedIn">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</body>
</html>