-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (83 loc) · 4.34 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paul Evans</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<img id="triangle" src="./images/red-triangle.svg" alt="">
<img id="me" src="./images/me.png" alt="">
<header>
<h1>Paul Evans</h1>
</header>
<div id="bio">
<br>
Hi - I’m Paul
<br><br>
I have been interested in coding for a long time and this year decided to change careers from science to computer programming.
<br><br>
I graduated in 2012 with a Masters in Biochemistry from Oxford University and then worked as an analytical chemist for two major pharmaceutical companies (Pfizer and GlaxoSmithKline). In October 2019 I decided to leave the pharmaceutical industry and devote myself full-time to learning how to code.
<br><br>
So far I have been learning HTML, CSS and Javascript via various online platforms (Coursera, codecademy and freeCodeCamp) and now I am looking to attend a bootcamp to increase the depth of my knowledge and improve my employability. I feel that learning directly from others in person would also suit my learning style better than learning from online tutorials.
<br><br>
I first heard about Founders and Coders from a friend of mine who is a Founders and Coders alumni and he highly recommended the course. In particular, he impressed upon me that his experience of teaching others how to code in Israel was a great way to reinforce the concepts that he learnt on the course. I have heard many great things about the collaborative and supportive nature of the Founders and Coders community and I know this is something I would love to be a part of.
<br><br>
Besides coding, I also enjoy travelling and producing electronic music. Below you will find a sample of a few photos I took on a recent trip to Bucharest, Romania!
<br><br><br>
<div class="iconContainer">
<div class="icons">
<a href="https://www.codewars.com/users/paule89123" target="_blank">
<img src="./images/codewars.svg" width="20" height="20" alt="codewars">
</a>
</div>
<br>
<div class="icons">
<a href="https://www.freecodecamp.org/paule89" target="_blank">
<img src="https://goo.gl/oQrQYo" width="24" height="24" alt="freeCodeCamp">
</a>
</div>
<br>
<div class="icons">
<a href="https://github.com/paule89123/paule89123.github.io" target="_blank">
<img src="./images/github.svg" width="20" height="20" alt="github repository">
</a>
</div>
<br>
<div class="icons">
<a href="https://uk.linkedin.com/in/paul-evans-69b0a356" target="_blank">
<img src="./images/linkedin.svg" width="19" height="19" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="carousel-container">
<div class="carousel">
<img class="photo" src="./images/photo5.jpg" alt="Edenland park">
<img class="photo" src="./images/photo1.jpg" alt="Street in Bucharest">
<img class="photo" src="./images/photo2.jpg" alt="Church in Bucharest">
<img class="photo" src="./images/photo3.jpg" alt="Old street in Bucharest">
<img class="photo" src="./images/photo4.jpg" alt="Umbrellas">
<img class="photo" src="./images/photo5.jpg" alt="Edenland park">
<img class="photo" src="./images/photo1.jpg" alt="Street in Bucharest">
</div>
<div id="leftArrowContainer" class="arrowContainer">
<img class="arrow" src="./images/back.svg" alt="Back">
</div>
<div id="rightArrowContainer" class="arrowContainer">
<img class="arrow" src="./images/next.svg" alt="Next">
</div>
<div id="playButtonContainer">
<img id="play" class="playPauseButton" src="./images/play.svg" alt="Play">
</div>
<div id="pauseButtonContainer">
<img id="pause" class="playPauseButton" src="./images/pause.svg" alt="Pause">
</div>
</div>
<script src="carousel.js"></script>
</body>
</html>