-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (89 loc) · 2.71 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Calin Gilan">
<title>Calin Gilan | Software Engineer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<style>
body {
background-color: white;
color: #212529;
}
h1, h2 {
color: #000;
}
.container {
padding: 2rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
margin-top: 1rem;
}
ul.icon-list {
padding-left: 20px;
list-style-type: disc;
}
ul.icon-list li {
margin-bottom: 0.5rem;
}
a {
color: #0d6efd;
}
a:hover {
color: #0a58ca;
}
footer {
margin-top: 2rem;
padding: 1rem;
text-align: center;
background-color: #f8f9fa;
}
</style>
</head>
<body>
<div class="container">
<main>
<h1>Welcome, I'm Calin Gilan</h1>
<p class="fs-5">I am a Full Stack Software Engineer proficient in Go, Java and JavaScript, continually exploring new technologies and frameworks.</p>
<hr>
<div class="row">
<div class="col-md-4">
<h2>Professional Experience</h2>
<ul class="icon-list">
<li>Twilio | 2022 - Present</li>
<li>Microsoft | 2021 - 2022</li>
<li>Capital One | 2017 - 2021</li>
</ul>
</div>
<div class="col-md-4">
<h2>Contact</h2>
<ul class="icon-list">
<li class="bi bi-envelope-fill"><a href="mailto:[email protected]">[email protected]</a></li>
<li><a href='https://www.linkedin.com/in/calin-gilan/'>LinkedIn Profile</a></li>
</ul>
</div>
<div class="col-md-4">
<h2>Publications</h2>
<ul class="icon-list">
<li><a href="https://medium.com/@califlower/creating-a-modern-react-single-page-app-in-asp-net-mvc-be4ed86da73a">React and ASP.NET</a></li>
</ul>
</div>
</div>
</main>
<footer>
© <script>document.write(new Date().getFullYear())</script> Calin Gilan
</footer>
</div>
</body>
</html>