-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha.html
More file actions
31 lines (28 loc) · 869 Bytes
/
a.html
File metadata and controls
31 lines (28 loc) · 869 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Personal Introduction</title>
<style>
.container {
display: flex;
align-items: center;
}
.photo {
width: 150px; /* Adjust as needed */
height: 150px; /* Adjust as needed */
margin-right: 20px; /* Spacing between photo and text */
}
/* Additional styling as needed */
</style>
</head>
<body>
<div class="container">
<img src="path_to_your_photo.jpg" alt="Your Name" class="photo">
<div class="introduction">
<h1>Your Name</h1>
<p>Your introduction text goes here. You can write about your professional background, interests, hobbies, or any other information you'd like to share.</p>
<!-- Add more content as needed -->
</div>
</div>
</body>
</html>