-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (97 loc) · 5.06 KB
/
index.html
File metadata and controls
110 lines (97 loc) · 5.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Maria Besteman</title>
<link rel="stylesheet" href="style.css">
<script src='./script.js' defer></script>
</head>
<body>
<header>
<nav>
<ul>
<a href="portfolio.html"><li>Portfolio</li></a>
<a href="#aboutme"><li>About me</li></a>
<a href="#contact"><li>Contact</li></a>
</ul>
</nav>
<section class="banner">
<div class="bannertext">
<h1>Hi, I'm Maria Besteman</h1>
<p>I'm a front-end developer from the east of the Netherlands. Originally an anthropologist, now a coder with a creative twist.</p>
<a href="portfolio.html"><button>Check my work</button></a>
</div>
</section>
</header>
<main>
<section class="preview-portfoliotext">
<h2>Portfolio Preview</h2>
<p>Here is an impression of the projects I have worked on. See my <a href="portfolio.html">portfolio</a> for more information on these projects and the techniques used.</p>
<a href="portfolio.html"></a>
</section>
<section id="preview-portfolio" class="preview-portfolio">
<div class="proj project1">
<a href="portfolio.html#eightiesworkouts">
<img src="images/project-eighties.jpg" alt="eighties workout project">
<div class="projecttext">
<h3 class="text">Eigthies workouts!</h3>
</div>
</a>
</div>
<div class="proj project2">
<a href="portfolio.html#runningclub">
<img src="images/project-runclub.jpg" alt="local runclub project">
<div class="projecttext">
<h3 class="text">Deventer Runclub</h3>
</div>
</a>
</div>
<div class="proj project3">
<a href="portfolio.html#jammming">
<img src="images/jammming_with_mariabee.png" alt="link to react-app project">
<div class="projecttext">
<h3 class="text">Jammming with MariaBee</h3>
</div>
</a>
</div>
<div class="proj project4">
<a href="portfolio.html#cheatsheet">
<img src="images/project-cheatsheet.jpg" alt="cheatsheet project">
<div class="projecttext">
<h3 class="text">Cheatsheet CSS Selectors</h3>
</div>
</a>
</div>
</section>
<section id="aboutme" class="aboutme">
<div class="aboutmetext">
<h2>About me</h2>
<p>I'm a front-end developer living in Deventer, the Netherlands with my daughter and husband.
After >10 years working in the non-profit sector as a project manager I got hooked on coding and decided to start the 'changeProfession' function. I now want to make an impact with my code instead of my project coordination skills, although those still come in handy.
Next to coding I love to read, workout on eighties music, draw, enjoy a wellcrafted beer, playing blues records and have dinner with family and friends.
</p>
<h3>My skills</h3>
<div class="skillLogos">
<img class="skills" id="html" src="images/logos/1499794874html5-js-css3-logo-png - grey.png" alt="I'm fluent in these languages: HTML5, CSS3 and JavaScript">
<img class="skills" id="git" src="images/logos/Git-Logo-Black.png" alt="I work with Git">
<a href="https://github.com/MariaBee3" target="_blank"><img class="skills" id="github" src="images/logos/GitHub-Mark-64px - grey.png" alt="See my projects on GitHub"></a>
<img class="skills" id="scrum" src="images/logos/professional-scrum-master-i-psm-i.png" alt="I am a certified and experienced scrum master">
<img class="skills" id="react" src="images/logos/react.png" alt="I am currently learning React, see an example of my progress in the jammming project">
</div>
<p class="skilltext"></p>
</div>
<div class="aboutmeimg">
<img class="myimg" src="images/FotoGrietje-101.3.jpg" alt="Maria Besteman">
</div>
</section>
<section id="contact" class="contact">
<h2>Contact me</h2>
<p>Do you think I could be a match for your organization? Don't hesitate to contact me. Reach out by <a href="mailto:maria.besteman@gmail.com" target="_blank">mail</a> or through <a href="https://www.linkedin.com/in/mariabesteman/" target="_blank">LinkedIn</a>.</p>
</section>
</main>
<footer>
<p>Copyright Maria Besteman</p>
</footer>
</body>
</html>