-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
60 lines (55 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Japan-Blog</title>
<!-- Bootstrap -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!--CSS-->
<link href="about.css" rel="stylesheet">
<!-- Google Fonts -->
<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=Dancing+Script:[email protected]&family=Kalam:wght@300;400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<!-- DO I EVEN NEED BOOTSTRAP FLEXBOX FOR ONE CENTER DIV?-->
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-md-4 mt-5 side-bar">
<div>
<h2>Welcome!</h2>
<p>
I'm glad you are visiting my latest project. Please bare in mind that it's still a work in progress,
and no where near finished!
</p>
<h2>About</h2>
<p>
I'm a junior web developer and travel enthusiast with a passion for frontend design.
I wrote a blog about my experience in Japan a while ago but never published it anywhere.
Recently I decided it would be cool to build my own website to display the blog.
I've never made a blog site before so it's been really fun!
</p>
<p>
Like what you see? I'm open to work! Checkout my <a href="https://madeleinewalder.github.io/portfolio/" target="_blank">Portfolio</a> website and <a href="https://www.linkedin.com/in/madeleine-walder/" target="_blank">LinkedIn</a> profile.
</p>
</div>
<!-- Back button -->
<div class="text-center mt-5">
<a class="btn btn-dark" href="index.html" role="button">Back</a>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer bg-dark text-white text-center py-3">
<div class="container-fluid text-center">
<p>© 2024 In Japan. Little Things, Big Differences.</p>
</div>
</footer>
<!-- Bootstrap -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>