-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (100 loc) · 4.29 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
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<title>Document</title>
</head>
<body>
<div>
<nav class= "grid-container">
<div class="item1">Graham Hollingsworth</div>
<a href="#home" class="item2"><div>Home</div></a>
<a href="#about" class="item3"><div>About</div></a>
<a href="#skills" class="item4"><div>Skills</div></a>
<a href="#work" class="item5"><div>Work</div></a>
<a href="#contact" class="item6"><div>Contact</div></a>
</nav>
<header>
<div class="headercontainer">
<p>My name is Graham Hollingsworth</p>
<h1>I am a Full Stack Developer</h1>
<a class="btn-work" href="#">View Work</a>
<a class="btn-contact" href="#">Contact Me</a>
</div>
</header>
<div class="about-me">
<h2>About Me</h2>
<div class="about-left">
<img src="images/myphoto.jpg" alt="Graham photo">
</div>
<div class="about-right">
<h4>Graham Hollingsworth</h4>
<p>Thanks for looking at my page, I am a full Stack Developer who creates
functional Web Apps with JS, React or ASP.net.
</p>
<p>
I am available for freelance work so have a look
at my latest projects below.
</p>
<a href="">HIRE ME NOW</a>
</div>
</div>
<div class="my-projects">
<h2>my projects</h2>
<div class="project1">
<div class="overlay">
<a href="#">View Project</a>
</div>
</div>
<div class="project2">
<div class="overlay">
<a href="https://torplaces.herokuapp.com/">Toronto Places</a>
</div>
</div>
<div class="project3">
<div class="overlay">
<a href="https://hollins4.github.io/reactcourselist/">Course list</a>
</div>
</div>
</div>
<div class="contact-section">
<h2>CONTACT ME</h2>
<p>Get in touch with me</p>
<div class="social-github">
<a href="https://github.com/hollins4/hollins4.github.io"><i class="fa fa-github w3-xxxlarge "></i></a>
<p> <b>Github: </b>
<a href="https://github.com/hollins4/hollins4.github.io">https://github.com/hollins4/</a>
</p>
</div>
<div class="social-email">
<a href="mailto:[email protected]"><i class="fa fa-windows w3-xxxlarge "></i></a>
<p> <b>Email: </b>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="social-linkedin">
<a href="https://www.linkedin.com/in/graham-hollingsworth-705517170/"><i class="fa fa-linkedin w3-xxxlarge "></i></a>
<p><b>LinkedIn: </b>
<a href="https://www.linkedin.com/in/graham-hollingsworth-705517170/">Graham Hollingsworth</a>
</p>
</div>
</div>
</div>
<footer>
<div class="social-text">
<p>
© 2017, All Rights Reserved, Developed by Graham Hollingsworth
</p>
</div>
<div class="social-icons">
<a href="https://github.com/hollins4/hollins4.github.io" class="footer-github"><i class="fa fa-github w3-xxxlarge "></i></a>
<a href="https://www.linkedin.com/in/graham-hollingsworth-705517170/" class="footer-linkedin"><i class="fa fa-linkedin w3-xxxlarge "></i></a>
</div>
</footer>
</body>
</html>