-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
64 lines (58 loc) · 3.46 KB
/
portfolio.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jon McGlade | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Give+You+Glory' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name"><a href="index.html">Jon McGlade</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</div>
<header class="blog-header">
<h1 class="tag name">// My glass window.</h1>
<p class="tag location blog-intro">Hey there! Below is a select few samples of work I have done for client's and personal projects. Feel free to check them out!</p>
</header>
<main class="main-blog">
<div class="portfolio-card card">
<h2>Lil' Acorn's Childminding</h2>
<p>Lil' Acorns was my first client website. The client wanted a simlpe responsive one page website which led to my decision of using Bootstap as the brick and mortar for the site. This was my first time using Bootstrap and I had a great amount of fun learning how frameworks work.</p>
<p>I also got to play around with the basics of Google Maps Javascript API. Logo was designed by the very tallented Abigail Taylor.</p>
<a href="http://lilacornschildminding.uk/">
<img src="images/la_website.jpg" alt="Image of Little Acorns website client work." class="portfolio-image" />
</a>
</div>
<div class="portfolio-card card padding">
<h2>University of Pymouth MMA</h2>
<p>Occasionally I pick up the odd design job to keep my Adobe skills up to scratch. The client wanted a flyer creating to promote their Mixed Martial Arts club. The work was produced in Photosop using standard techniques for print production.</p>
<p>Primarily used layermasks for the creation of this peice.</p>
<a href="https://drive.google.com/file/d/0BymXBPTX_rYSX0Uwc1dvblVpV28/view?usp=sharing">
<img src="images/mma_flyer.jpg" alt="Image of a mixed martial art flyer produced for a client." class="portfolio-image" />
</a>
</div>
<div class="portfolio-card card padding">
<h2>Grosvenor Casino, Help for Hero's</h2>
<p>This was my first client work created with Adobe Illustrator. I had a great amount of fun with this project and was happy with the end results. I learnt a lot about creating for print and repeating patterns.</p>
<p>Client wanted a flyer to promote a charity poker game that was being organised.</p>
<a href="https://drive.google.com/file/d/0BymXBPTX_rYSWW9ZTlB0Wk5ZdVU/view?usp=sharing">
<img src="images/h4h_flyer.jpg" alt="Image of flyer promoting a charity poker tournament, produced for a client." class="portfolio-image" />
</a>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/jonmcglade" class="social twitter">Twitter</a></li>
<li><a href="https://uk.linkedin.com/in/jmcglade" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/jonmcglade" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2016, Jonathan McGlade</p>
</footer>
</body>
</html>