-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Personal Profile</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="/api/placeholder/200/200" alt="Profile Picture" class="profile-img">
<h1>Your Name</h1>
<p>Your Title or Tagline</p>
<div class="social-links">
<a href="#">LinkedIn</a>
<a href="#">GitHub</a>
<a href="#">Email</a>
</div>
</header>
<div class="container">
<section id="work-experience">
<h2>Work Experience</h2>
<div class="entry">
<div class="entry-content">
<h3>Software Engineer</h3>
<p class="date">January 2020 - Present</p>
<p>Company Name</p>
<p>Description of your role and achievements. Lorem ipsum dolor sit amet, consectetur adipiscing
elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<div class="entry-image">
<img src="/api/placeholder/300/200" alt="Work Experience Image">
</div>
</div>
</section>
<section id="education">
<h2>Education</h2>
<div class="entry">
<div class="entry-content">
<h3>Bachelor of Science in Computer Science</h3>
<p class="date">2016 - 2020</p>
<p>University Name</p>
<p>Brief description of your academic achievements, relevant coursework, or thesis.</p>
</div>
<div class="entry-image">
<img src="/api/placeholder/300/200" alt="Education Image">
</div>
</div>
</section>
<section id="projects">
<h2>Personal Projects</h2>
<div class="entry">
<div class="entry-content">
<h3>Project Name</h3>
<p class="date">2023</p>
<p>Description of your project, technologies used, and outcomes. Include links to live demos or
GitHub repositories if available.</p>
</div>
<div class="entry-image">
<img src="/api/placeholder/300/200" alt="Project Image">
</div>
</div>
</section>
<section id="interests">
<h2>Personal Interests & Activities</h2>
<div class="entry">
<div class="entry-content">
<h3>Activity/Interest</h3>
<p>Description of your hobbies, volunteer work, or extra-curricular activities.</p>
</div>
<div class="entry-image">
<img src="/api/placeholder/300/200" alt="Interest Image">
</div>
</div>
</section>
</div>
</body>
</html>