-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (74 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<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=Poppins&family=Roboto&family=Source+Sans+3&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<header class="color">
<nav>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#background">Background</a></li>
<li><a href="#contact">Get in touch</a></li>
</ul>
</nav>
</header>
<body>
<section class="texture">
<img src="Images/Headshot.png" alt="Profile photo">
<h1>Welcome, I'm Fearghal,<br> a software developer.</h1>
<p> Take a look around my portolio website and get in contact to see what we can make together.</p>
</section>
<section class="color" id="projects">
<h2>My latest projects:</h2>
</section>
<section class="color" id="projects-list">
<article>
<img src="Images/Memory-game.png" alt="Picture of a memory card game">
<a href="https://feargh.github.io/Memory-Game/"><h3>Memory Game</h3></a>
<p>This game was created as part of a sucessful application to founders and coders fotware training program</p>
</article>
<article>
<img src="Images/Hobby-page.png" alt="London swimming website">
<h3>Hobby Page</h3>
<p>This project was created to illustrate the clients hobby of swimming in London</p>
</article>
<article>
<img src="Images/Application-website.png" alt="Application website picture">
<a href="https://feargh.github.io/"><h3>Application website</h3></a>
<p>This project was used to provide all the necessary information to apply to the founders and coders software course</p>
</article>
</section>
<section id="background" class="texture">
<h2>Background</h2>
<p>
A trained optometrist, I have worked in permanent roles and freelance for many well known opticians.
I enjoyed working as an optometrist and now I am tkaing on the challenge of my new career as a software developer.
</p>
<h3>Transferable skills that I will bring from my previous career are:</h3>
<ul>
<li>Excellent communication and interpersonal skills honed through years of patient care.</li>
<li>Strong problem-solving abilities developed in diagnosing eye conditions and recommending suitable solutions.</li>
<li>Adaptability and ability to work with diverse individuals, crucial in work team environments.</li>
<li>Detail-oriented record keeping and documentation, applicable to tech project management.</li>
</ul>
</section>
<section class="color" id="contact">
<h2>Get in touch</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quam nam nesciunt aspernatur? Praesentium, dolor dignissimos.
Excepturi, molestias explicabo.
Possimus eius illo architecto qui laborum id necessitatibus aspernatur consequuntur dolores natus.
</p>
</section>
<footer class="texture">
<h4>Coded by Fearghal</h4>
</footer>
</body>
</html>