-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (84 loc) · 4.97 KB
/
index.html
File metadata and controls
128 lines (84 loc) · 4.97 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<title>Porfolio</title>
<link rel="stylesheet" type="text/css" href="Portfoliov2.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<script src="https://use.fontawesome.com/02b956c77d.js"></script>
<script type ="text/javascript" src="Portfoliov2.js"></script>
</head>
<body>
<header>
<nav id="navbar">
<div id="container">
<div class="nav-link"><i class="fa fa-home fa-2x"> <span class="navbar-text" id="unhide-text">Home</span></i></div>
<div id="link-container">
<div class="nav-link"><i class="fa fa-user fa-2x"> <span class="navbar-text" id="unhide-text">Bio</span></i></div>
<div class="nav-link"><i class="fa fa-folder-open-o fa-2x"><span class="navbar-text" id="unhide-text">Projects</span></i></div>
<div class="nav-link"><i class="fa fa-envelope-o fa-2x" ><span class="navbar-text" id="unhide-text">Contact</span></i></div>
</div>
</div>
</nav>
</header>
<section id="welcome-section">
<div id="welcome-box">
<h1>Hi, I'm Will</h1>
<h2 id="subheader">Font End Developer · <a href="" class="typewrite" data-period="2000" data-type='[ " javaScript", " CSS", " HTML", " Lets work together..?" ]'>
<span class="wrap"></span>
</a></h2>
</div>
<i class="fa fa-chevron-down fa-3x arrow-bio" aria-hidden="true"></i>
</section>
<section id="bio">
<h2 id="contact-header">Bio</h2>
<div id="bio-container">
<div id="bio-intro">
<p class="text">A gregarious self-taught frontend developer with a voracious appetite for solving problems, learning and self improvement. <br><br>
With a background in relationship and incident management, I am adept at comunicating with people with various levels of technical ability to resolve issues and collaborate on technical solutions.<br><br>
What continues to attract me to front end development is the oscillation between a sense of challenge and accomplishment. I enjoy the dogged pursuit of finding a solution. <a href="" class="typewrite" data-period="2000" id="cursor" data-type='[ " |"]'><span class="wrap" style="border-right: 0.08em solid black"></span></a>
</p>
</div>
<i class="fa fa-chevron-down fa-3x arrow-portfolio" aria-hidden="true"></i>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div id="projects_container">
<figure class="hvr-float-shadow">
<img src="ImagePlaceholder.png">
<a href="https://sandbagger.github.io/Random-Quote-Generator-/" target="blank"><figcaption><span class="fig-header">Random Quote Generator</span> <br><br> <span class="fig-text">Generates random quotes that integreates with the Twitter API. Request is made via a JSONP request so as to avoid cross origin error. <br> <br>The JSONP request is wrapped in a promise to improve response handling.</span> </figcaption></a>
</figure>
<figure class="hvr-float-shadow">
<img src="ImagePlaceholder.png">
<a href="https://sandbagger.github.io/Local-Weather-App/" target="blank"><figcaption><span class="fig-header">Local Weather App</span> <br><br> <span class="fig-text"> Integrates with Google Map API to reverse geocode the visitors location. <br><br> Calls a weather API to provide current weather in the form of an animated weather icon.</span> </figcaption></a>
</figure class="hvr-float-shadow">
</span>
<figure class="hvr-float-shadow">
<img src="ImagePlaceholder.png">
<a href="https://sandbagger.github.io/Wikipedia-Viewer/" target="blank"><figcaption><span class="fig-header">Wiki Viewer</span> <br><br> <span class="fig-text">Dynamically searches and displays summary of Wikipedia pages based on user input. <br><br> Utilizes fetch API, taking advantage of Wikipedia’s recent support for CORS. Returned searches are faded in using CSS animations. </span></figcaption></a>
</figure>
<figure class="hvr-float-shadow">
<img src="ImagePlaceholder.png">
<a href="https://sandbagger.github.io/TwitchTV/" target="blank"><figcaption><span class="fig-header">TwitchTV App</span> <br><br> <span class="fig-text"></span></figcaption></a>
</figure>
<figure>
<img src="ImagePlaceholder.png">
<figcaption><span class="fig-header">Coming soon...</span></figcaption>
</figure>
<figure>
<img src="ImagePlaceholder.png">
<figcaption><span class="fig-header">Coming soon...</span></figcaption>
</figure>
</div>
<i class="fa fa-chevron-down fa-3x arrow-contact" id="chevron-project"></i>
</section>
<section id="contact">
<h2 id="contact-header">Contact</h2>
<div class="contact-container">
<a href="https://www.freecodecamp.com/fccdff37df5" target="blank" class="sm-button hvr-float-shadow"><i class="fa fa-free-code-camp fa-5x contact-icon" aria-hidden="true"></i></a>
<a href="https://github.com/Sandbagger" target="blank" class="sm-button hvr-float-shadow"><i class="fa fa-github fa-5x contact-icon" aria-hidden="true"></i></a>
<a href="https://twitter.com/Muggle_Wump" target="blank" class="sm-button hvr-float-shadow"><i class="fa fa-twitter fa-5x contact-icon" aria-hidden="true"></i></a>
</div>
</section>
</body>
</html>