-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
165 lines (165 loc) · 5.72 KB
/
about.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Information about front-end developer student Michelle Wegler, based in Malmö Sweden. Highlights: HTML5, CSS and JavaScript."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&family=Xanh+Mono&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/818262a977.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link href="src/portfolio.css" rel="stylesheet" type="text/css" />
<title>Front End Developer - Michelle Wegler About</title>
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html"
><img src="img/a_cat.jpg" alt="logo" class="img-fluid logo-nav"
/></a>
<button
class="navbar-toggler navbar-light bg-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="container">
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link"
aria-current="page"
href="index.html"
title="Home"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html" title="About"
>About</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="mywork.html" title="My Work"
>My Work</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html#contact" title="Contact"
>Contact</a
>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div class="hero">
<h1 class="mt-5">About Me</h1>
<h2>Front-end developer based in Malmö, Sweden</h2>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 mb-3">
<img
src="img/avatar.png"
class="img-fluid rounded-circle border-img"
alt="Avatar of homepage owner"
/>
</div>
<div class="col-sm-4">
<h3 class="mb-3 index-h2 text-left pl-4 mt-5">
About Michelle Wegler
</h3>
<p class="pl-4">
With a background in social work, and experience in development,
planning, and system administration at Lund municipality, I am
currently on a journey to becoming a frontend developer.
<br /><br />
Highlights: HTML5, CSS, JavaScript, React
</p>
</div>
<div class="col-sm-4">
<img
src="img/leaves.jpg"
class="img-fluid rounded-circle border-img"
alt="Green leaves"
/>
</div>
</div>
</div>
<div class="navigation-links d-flex justify-content-center mt-3 mb-3">
<a href="mywork.html" class="secondary-link btn mr-5">My Work</a>
<a href="contact.html#contact" class="primary-link btn">Contact me</a>
</div>
<footer>
<div class="container">
<div class="footer-container">
<div class="d-flex justify-content-center">
<div class="ml-5 mt-3">
<a href="#">
<img src="img/a_cat.jpg" alt="Logo, black cat" class="logo"
/></a>
<span class="logoTextSpan ml-3 mr-5"
>Michelle Wegler 2022, open source</span
>
</div>
</div>
<div class="d-flex justify-content-center">
<div class="d-flex mt-3 mb-3">
<a
href="https://www.linkedin.com/in/michellewegler/"
title="Linkedin Profile"
target="_blank"
rel="noopener noreferrer"
><i class="fa-brands fa-linkedin" aria-hidden="true"></i
><span class="sr-only">Linkedin</span></a
>
</div>
<div class="d-flex mr-5 mt-3 mb-3">
<a
href="https://github.com/smirrebinx/Responsive-Portfolio.git"
title="Github Profile"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-github" aria-hidden="true"></i
><span class="sr-only">Github</span></a
>
</div>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"
></script>
</body>
</html>