-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path19-cv-website.html
148 lines (132 loc) · 4.01 KB
/
19-cv-website.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
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
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<title>Software Architect CV</title>
<!-- <link rel="stylesheet" type="text/css" href="styles.css" /> -->
<style>
h1 {
font-size: 24px;
margin-bottom: 5px;
}
h2 {
font-size: 18px;
color: #888;
margin-top: 0;
}
.profile img {
width: 150px;
border-radius: 50%;
margin-bottom: 10px;
}
.profile p {
margin-top: 0;
}
.experience h3 {
font-size: 20px;
margin-bottom: 10px;
}
.experience h4 {
font-size: 16px;
margin-top: 20px;
margin-bottom: 5px;
}
.experience .date {
color: #888;
font-size: 14px;
margin-bottom: 10px;
}
.skills h3 {
font-size: 20px;
margin-bottom: 10px;
}
.skills ul {
list-style-type: none;
padding-left: 0;
}
.skills li {
display: inline-block;
background-color: #f2f2f2;
color: #555;
border-radius: 20px;
padding: 8px 12px;
margin-right: 10px;
margin-bottom: 10px;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 14px;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>John Doe</h1>
<h2>Software Architect</h2>
</header>
<section class="profile">
<img
src="https://avatars.dicebear.com/api/open-peeps/stefan.svg"
alt="Profile Picture"
/>
<p>
I am a software architect with a passion for creating robust and
scalable solutions. With a background in full-stack development and
DevOps, I bring a comprehensive understanding of the software
development lifecycle to my role as a technical architect.
</p>
</section>
<section class="experience">
<h3>Experience</h3>
<h4>Technical Architect, ABC Tech Solutions</h4>
<p class="date">2018 - Present</p>
<p>
As a technical architect at ABC Tech Solutions, I am responsible for
designing and implementing software architectures for large-scale
enterprise applications. I collaborate with cross-functional teams to
ensure the technical feasibility of projects and provide guidance on
best practices.
</p>
<h4>DevOps Expert, XYZ Corporation</h4>
<p class="date">2016 - 2018</p>
<p>
As a DevOps expert at XYZ Corporation, I streamlined the software
development and deployment processes by implementing continuous
integration and delivery pipelines. I worked closely with development
teams to automate build, test, and deployment workflows, resulting in
improved efficiency and reduced time to market.
</p>
<h4>Full-Stack Developer, DEF Software Solutions</h4>
<p class="date">2014 - 2016</p>
<p>
As a full-stack developer at DEF Software Solutions, I contributed to
the development of web applications using a variety of technologies. I
was involved in the entire development lifecycle, from requirements
gathering to deployment, and gained a deep understanding of both
front-end and back-end technologies.
</p>
</section>
<section class="skills">
<h3>Skills</h3>
<ul>
<li>Software Architecture</li>
<li>Full-Stack Development</li>
<li>DevOps</li>
<li>Project Management</li>
<li>Team Leadership</li>
<li>Technical Documentation</li>
<li>Database Design</li>
<li>Cloud Technologies (AWS, Azure)</li>
<li>Agile Methodologies</li>
<li>Master in Management</li>
<li>Master in Political Science</li>
</ul>
</section>
<footer>
<p>© 2023 John Doe</p>
</footer>
</div>
</body>
</html>