-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (50 loc) · 1.99 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
---
layout: default
---
<div class="home">
<div class="splash">
<img src="images/GroupBWSerious.jpg" class="group-pic " mouseover-src="/images/GroupColorFun.jpg" >
</div>
<a id="nss7"></a>
<h1 class="title"> We are NSS Cohort 7 </h1>
<div class="about">
<span> After six months of intensive training and coding +40 hours/week, </span>
<span> Countless cups of coffee and tea, </span>
<span> Dozens of apps and thousands of lines of code, </span>
<h3> We are Cohort 7 and we are ready for your coding challenges! </h3>
</div>
<div class="specialization">
<a id="specialize"></a>
<h1>Our Specialties</h1>
<p>
The curriculum at NSS has given us both the skill and the knowledge of technology required to become junior full-stack software developers, including:
</p>
<img src='images/html5logo.png' title="HTML5">
<img src='images/CSS3logo.jpg' title="CSS3">
<img src='images/javascriptlogo.png' title="Javascript">
<img src='images/jquerylogo.png' title="JQuery">
<img src='images/angularlogo.png' title="AngularJS">
<img src='images/dotnetlogo.jpeg' title=".NET and C#">
<img src='images/sqllogo.png' title="SQL and Databases">
<img src='images/visualstudiologo.svg' title="Visual Studio">
<img src='images/githublogo.png' title="Github and Git">
</div>
<!--Example of listing students -->
<div id="meetus" class="meetus">
<h1 class="page-heading">Meet Us</h1>
<p> We are much more than the technologies we know. Visit our personal sites. Invite us for a chat. We would love to get to know you. </p>
<ul>
{% for student in site.students %}
<li class="student-list">
<div class="profile-cell">
<a class="studentlink"href={{student.site}} >
<div class="crop">
<img class="student-pic" mouseover-src={{student.colorimg}} src={{student.image}}>
</div>
<h6 class="student-name">{{student.name}}</h6></a>
<span class="student-bio">{{student.bio}}</span>
</div>
</li>
{% endfor %}
</ul>
</div>