-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (77 loc) · 3.7 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
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>Samantha Yeargin | Nashville Software School | Portfolio</title>
<link rel='stylesheet' href='css/style.css'>
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<div id="content">
<div id="sidebar">
<div id="contact">
<img class="photo" src="img/slyeargin.png">
<h1>Samantha Yeargin</h1>
<h2>Cohort 5, Nashville Software School</h2>
<h3>Find me on …</h3>
<ul class="fa-ul">
<li><i class="fa-li fa fa-linkedin"></i><a href="http://www.linkedin.com/in/samanthay">LinkedIn</a></li>
<li><i class="fa-li fa fa-github"></i><a href="http://github.com/slyeargin">GitHub</a></li>
<li><i class="fa-li fa fa-twitter"></i><a href="http://twitter.com/slyeargin">Twitter</a></li>
</ul>
</div>
</div>
<div id="projects">
<h3>Completed Projects</h3>
<div>
<h4>Weather Map</h4>
<a href="/weather-map"><img class="screenshot" src="img/weather-map.png"></a>
<p class="description">For each ZIP code entered, a flag is added at the appropriate location on a map and a chart with the 10-day forecast of highs and lows is generated.</p>
<p class="technologies">jQuery, Jade, LESS, Lodash, Weather Underground API, Google Maps API</p>
<p class="links"><a href="/weather-map">Use this application.</a> •
<a href="http://github.com/slyeargin/weather-map">Find this project on GitHub.</a></p>
</div>
<div>
<h4>Memoré</h4>
<a href="/memory"><img class="screenshot" src="img/memory.png"></a>
<p class="description">A Beyoncé-themed memory game.</p>
<p class="technologies">jQuery, Jade, LESS</p>
<p class="links"><a href="/memory">Use this application.</a> •
<a href="http://github.com/slyeargin/memory">Find this project on GitHub.</a></p>
</div>
<div>
<h4>Yahtzee</h4>
<a href="/yahtzee"><img class="screenshot" src="img/yahtzee.png"></a>
<p class="description">Add users (with avatars), roll/freeze dice, and keep score.</p>
<p class="technologies">jQuery, Jade, LESS</p>
<p class="links"><a href="/yahtzee">Use this application.</a> •
<a href="http://github.com/slyeargin/yahtzee">Find this project on GitHub.</a></p>
</div>
<div>
<h4>Super Bank</h4>
<a href="/super-bank"><img class="screenshot" src="img/super-bank.png"></a>
<p class="description">This application processes deposits and withdrawals, displaying the transactions in a ledger.</p>
<p class="technologies">jQuery, Jade, LESS</p>
<p class="links"><a href="/super-bank">Use this application.</a> •
<a href="http://github.com/slyeargin/super-bank">Find this project on GitHub.</a></p>
</div>
<div>
<h4>Super Calc</h4>
<a href="/super-calc"><img class="screenshot" src="img/super-calc.png"></a>
<p class="description">This calculator performs slightly more complicated calculations from limited user input.</p>
<p class="technologies">jQuery, Jade, LESS</p>
<p class="links"><a href="/super-calc">Use this application.</a> •
<a href="http://github.com/slyeargin/super-calc">Find this project on GitHub.</a></p>
</div>
<div>
<h4>Simple Calc</h4>
<a href="/simple-calc"><img class="screenshot" src="img/simple-calc.png"></a>
<p class="description">This calculator performs simple calculations from user input.</p>
<p class="technologies">jQuery, Jade, LESS</p>
<p class="links"><a href="/simple-calc">Use this application.</a> •
<a href="http://github.com/slyeargin/simple-calc">Find this project on GitHub.</a></p>
</div>
</div>
</div>
</body>
</html>