-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (123 loc) · 4.02 KB
/
index.html
File metadata and controls
141 lines (123 loc) · 4.02 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Add Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Your Name - Personal Page</title>
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.card {
background: #fff;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
max-width: 500px;
width: 100%;
text-align: center;
padding: 40px 30px;
overflow: hidden;
position: relative;
}
.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 5px solid #fff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 5px;
color: #2c3e50;
}
.job-title {
font-size: 1.2rem;
color: #7f8c8d;
margin-bottom: 20px;
font-weight: 300;
}
.about-me {
font-size: 1rem;
color: #34495e;
margin-bottom: 30px;
text-align: left;
}
.contact-info {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: 15px;
}
.contact-info li a {
color: #3498db;
text-decoration: none;
font-size: 1.5rem;
transition: color 0.3s ease;
}
.contact-info li a:hover {
color: #2980b9;
}
/* Simple section styling */
.section {
margin-top: 30px;
border-top: 1px solid #ecf0f1;
padding-top: 30px;
}
.section h2 {
font-size: 1.5rem;
margin-bottom: 15px;
color: #2c3e50;
}
</style>
</head>
<body>
<div class="card">
<!-- 1. Use the relative path to your image -->
<img src="images.jpeg" alt="Your Name" class="profile-picture">
<!-- 2. Replace with your name -->
<h1>Your Name</h1>
<!-- 3. Replace with your job title or a short description -->
<p class="job-title">Software Engineer | Web Developer</p>
<div class="section">
<h2>About Me</h2>
<!-- 4. Replace with a short bio about yourself -->
<p class="about-me">
Hello! I'm a passionate developer with a love for creating clean, efficient, and user-friendly applications.
I specialize in front-end technologies and enjoy bringing ideas to life in the browser.
</p>
</div>
<div class="section">
<h2>Contact & Links</h2>
<!-- 5. Replace # with your actual links -->
<ul class="contact-info">
<li><a href="#" title="WhatsApp"><i class="fab fa-whatsapp"></i></a></li>
<li><a href="#" title="Instagram"><i class="fab fa-instagram"></i></a></li>
<li><a href="#" title="TikTok"><i class="fab fa-tiktok"></i></a></li>
<li><a href="#" title="Facebook"><i class="fab fa-facebook"></i></a></li>
<li><a href="#" title="YouTube"><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
</div>
</body>
</html>