-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.js
More file actions
50 lines (50 loc) · 1.4 KB
/
profile.js
File metadata and controls
50 lines (50 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Profile</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
header h1 {
margin: 0;
}
.profile {
background-color: #fff;
padding: 20px;
margin: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.profile img {
max-width: 200px;
border-radius: 50%;
}
</style>
</head>
<body>
<header>
<h1>My Profile</h1>
</header>
<div class="profile">
<img src="profile-picture.jpg" alt="My Profile Picture">
<h2>John Doe</h2>
<p>Web Developer</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec quam at urna tincidunt vehicula.</p>
<a href="https://twitter.com/johndoe" target="_blank">Twitter</a>
<a href="https://linkedin.com/in/johndoe" target="_blank">LinkedIn</a>
<a href="https://github.com/johndoe" target="_blank">GitHub</a>
</div>
</body>
</html>