-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
54 lines (51 loc) · 3.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/881e111c11.js"crossorigin="anonymous"></script> <!--Detta är en länk till en sida som hjälper mig att få icons i min footer-->
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" media="screen and (max-width:1170px)" href="table.css">
<link rel="stylesheet" media="screen and (max-width:900px)" href="phone.css">
<link rel="stylesheet" media="screen and (max-width:695px)" href="phone1.css">
<title>Portfolio5.0</title>
</head>
<body>
<!--Nav är min navigationsmeny-->
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!--Här nedan börjar about me med sectioner-->
<section id="about">
<h1 class="heading">About Me</h1>
<div class="about">
<img src="img/ida5.0.jpg" alt="ida">
<div class="name">
<h2>Hi! I´m Ida Casperson</h2>
<p>And I am 27 years old. I live in Mölndal which is located just next to Gothenburg.
I am a person who enjoys spending time with friends and family in my free time and whenever possible I like to engage in CrossFit training.
Sailing along the west coast during the summers is a significant passion of mine. Traveling or going on a spontaneous road trip is also something I never say no to. </p>
<p>I am currently in my first year of studying Frontend Development at the Media Institute in Gothenburg.
At the same time I work weekend shifts at Volvo Cars in Torslanda, where I ensure that the cars being built are watertight and soundproof. I prepare the car bodies for various chemical baths before they move on to the assembly factory.
I have been in Volvo Cars for almost 7 years now and have been fortunate to work in various roles primarily within logistics. In recent years I have been in the paint shop but now I feel the need to continue my development,
which led me to choose the Frontend Developer program. </p>
<p> At the moment I am in the process of learning <b>HTML</b> and <b>CSS</b>, and very soon, I will be diving into <b>JAVASCRIPT</b> as well. </p>
</div>
</div>
</section>
<!--Här nedan är min footer-->
<footer>
<small>COPYWRITE IDA CASPERSON @2023 </small>
<a class="icon" href="http://www.linkedin.com/in/ida-casperson-9600881b2" target="_blank"><i class="fa-brands fa-linkedin" style="color: #000000;"></i></a>
<a class="icon" href="https://github.com/iiddaa96" target="_blank"><i class="fa-brands fa-github" style="color: #010409;"></i></a>
<a class="icon" href="https://outlook.office365.com/mail/" target="_blank"><i class="fa-solid fa-envelope" style="color: #030507;"></i></a>
</footer>
</body>
</html>