forked from makersquare/frontend-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (128 loc) · 5.3 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project List | MKS Front-End Cohort 1</title>
<link rel="stylesheet" href="stylesheets/app.css" />
<script src="bower_components/modernizr/modernizr.js"></script>
</head>
<body class="project-list-page">
<header>
<h1>MKS Front-End Final Projects!</h1>
</header>
<div class="project-list">
<!-- Sample Project Group -->
<div class="project">
<div class="project-wrap">
<img src="images/project-atxnerdyladies.png" alt="" class="picture" id="elyse">
<h2 class="name">Elyse</h2>
<h3 class="project-name">
<a href="projects/project-atxnerdyladies.html">ATX Nerdy Ladies</a>
</h3>
<p class="project-description">
My final project will be to work on the <a href="http://atxnerdyladi.es">ATX Nerdy Ladies</a> site and get some new features up!
</p>
</div>
</div>
<!-- END -->
<!-- Another Sample Project Group -->
<div class="project">
<div class="project-wrap">
<img src="images/project-puppy.jpg" alt="" class="picture" id="alex">
<h2 class="name">Alex</h2>
<h3 class="project-name">
<a href="projects/project-alex.html">SXSW Twitter App</a>
</h3>
<p class="project-description">
I'm building an app for MakerSquare to display tweets during the SXSW party (which is tomorrow so obviously this is a lie).
</p>
</div>
</div>
<!-- END -->
<!-- Another Sample Project Group -->
<div class="project">
<div class="project-wrap">
<img src="images/project-puppy.jpg" alt="" class="picture" id="sartaj">
<h2 class="name">Sartaj</h2>
<h3 class="project-name">
<a href="projects/project-sample.html">Something Random</a>
</h3>
<p class="project-description">
Who knows, this guy has so many side projects going on at a time I can't even begin to guess what he'll be doing.
</p>
</div>
</div>
<!-- END -->
<!-- ADD YOURSELF HERE -->
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="http://www.chizeck.com/wp-content/uploads/2013/02/Huey_Lewis_y_The_News-Sports-Frontal.jpg" alt="" class="picture" id="daniel">
<h2 class="name">Daniel Olasky</h2>
<h3 class="project-name"><a href="projects/textboxscore.html">Text Box Score thingy</a></h3>
<p class="project-description">
I want to make a player tracker that convert the stats in game logs to english sentences.
</p>
</div>
</div>
<!-- END -->
<!-- ADD YOURSELF HERE -->
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="images/emancipet.png" class="picture" id="becca"><!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<h2 class="name">Becca Naul</h2>
<h3 class="project-name"><a href="projects/project-beccatbd.html">TBD...</a></h3>
<p class="project-description">
Not 100%, but I think I'm going to work with Daniel!
</p>
</div>
</div>
<!-- END -->
<!-- ADD YOURSELF HERE -->
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="http://media.heavy.com/media/2013/03/freshprince3.jpg" alt="" class="picture" id="YOURNAME">
<h2 class="name">Tony</h2>
<h3 class="project-name">Tony's Project</h3>
<p class="project-description">
<a href="http://media.heavy.com/media/2013/03/freshprince3.jpg">Super baller portfolio of future magical things</a>
</p>
</div>
</div>
<!-- END -->
<!-- ADD YOURSELF HERE -->
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="images/project-puppy.jpg" alt="" class="picture" id="YOURNAME">
<h2 class="name">Your Name</h2>
<h3 class="project-name">Your Project Name</h3>
<p class="project-description">
Tell us what you'll be working on in 140 characters or less!
</p>
</div>
</div>
<!-- END -->
<!-- ADD YOURSELF HERE -->
<div class="project">
<div class="project-wrap">
<!-- CHANGE TO YOUR OWN PHOTO AND ID -->
<img src="images/project-puppy.jpg" alt="" class="picture" id="YOURNAME">
<h2 class="name">Your Name</h2>
<h3 class="project-name">Your Project Name</h3>
<p class="project-description">
Tell us what you'll be working on in 140 characters or less!
</p>
</div>
</div>
<!-- END -->
</div>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/foundation/js/foundation.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>