-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
74 lines (63 loc) · 2.91 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Bridget Meyboom</title>
<link rel="stylesheet" href="style.css">
<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=Pixelify+Sans:wght@400;700&display=swap" rel="stylesheet">
<!--link below from searching font awesome cdn, for close icon for smaller devices -->
<script src="https://kit.fontawesome.com/dfd5dc561d.js" crossorigin="anonymous"></script>
</head>
<body>
<section class = "sub-header">
<nav>
<a href="index.html"><img src="images/bike.png"></a>
<div class="nav-links" id="navLinks"> <!-- id identifies script? -->
<i class="fa-solid fa-xmark" onclick="hideMenu()"></i> <!-- close icon for small device menu -->
<ul>
<li><a href = "index.html">HOME</a></li>
<li><a href = "about.html">ABOUT</a></li>
<li><a href = "projects.html">PROJECTS ETC.</a></li>
<!-- <li><a href = "travel.html">TRAVEL</a></li> -->
<li><a href = "contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa-solid fa-bars" onclick="showMenu()"></i> <!-- menu icon for small devices -->
</nav>
<H1>About me</H1>
</section>
<!---- About Us content----->
<section class="about-us">
<div class="row">
<div class="about-col">
<h1>Bridget Meyboom</h1>
<p>Who am I? Good question. To employers I'm a freshly graduated Engineering Physics student. To myself I'm a cyclist, a runner, and I love doing anything outside...
One of my goals in life is to work on improving the world's environmental sustainability, along with social sustainablity. I will jump at any opportunity to work
towards that goal, big or small. I work hard and I love working with people.
</p>
<a href="projects.html" class="hero-btn red-btn">Explore projects</a> <!-- red-btn class that makes sure you can see the botton (original was white) -->
</div>
<div class="about-col">
<img src="images/bridget cafe.JPG" alt="">
</div>
</div>
</section>
<!-- Footer -->
<section class="footer">
<h4>BRIDGET MEYBOOM</h>
<p>Engineering Physics</br>Environment and Social Sustainability</br>Cyclist and Adventurer</br><a href="contact.html" class="foot-btn">Get in touch!</a></p>
</section>
<!--------JavaScript for Toggle Menu ------->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0"; // in java??!! changes style to show menu
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>