-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteachers.html
118 lines (115 loc) · 4.89 KB
/
teachers.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
<!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">
<title>Thank you James</title>
<!-- FONT -->
<link href="https://fonts.googleapis.com/css?family=Didact+Gothic|Fredoka+One|Chau+Philomene+One|Hammersmith+One" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" type="text/css" href="css/jquery.fullPage.css" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="top-head">
<div>
<img class="nav-gift" src="img/gift.svg">
</div>
<div id="nav-bg"></div>
</header>
<nav class="global-nav">
<div class="nav-menu">
<ul>
<li><a href="teachers.html" class="nav-link">Teacher</a></li>
<li><a href="web12.html" class="nav-link">WEB 12</a></li>
<li><a href="web13.html" class="nav-link">WEB 13</a></li>
<li><a href="web11.html" class="nav-link">Silvana</a></li>
</ul>
</div>
</nav>
<main class="home-container" id="fullpageTeachers">
<div class="section teacherSec">
<div class="section-container">
<h2 class="page-title">From Teachers</h2>
</div>
</div>
<div class="section">
<div id="anne" class="section-container">
<img src="img/anneemberline.svg">
<div class="message">
<h2>James!</h2>
<h3>It’s been such a pleasure working with you.</h3>
<p>I’ve enjoyed chatting in your office, trying to guess what new students will be like, and planning our ever-evolving curriculum with you. I’ve also especially enjoyed how well you got students to wrangle their chaos into organized file structures when they hand in client projects. Ahhhh, organization. <a href="mailto:[email protected]">Keep in touch!</a> Invite me when your band plays!
</p>
</div>
</div>
</div>
<div class="section">
<div id="dan" class="section-container">
<p class="message">Hello James from Cork, here is a photo gallery powered by the Facebook API! I am really looking forward to querying your new photos for cohort 12 Third Party API course!!!! :D<br>-=Dan=-</p>
<img src="img/dan/james-as-britney.jpg" alt="James as Britney" style="top: 5%;
left: 22%;
width: 70%;
z-index: 10;
height: 70%;
position: absolute;">
<img src="img/dan/james-on-snowball.jpg" alt="James on snowball" style="top: 50%;
left: 0%;
width: 45%;
height: 40%;
box-sizing: content-box;
z-index: 50;
border: solid 2rem white;
position: absolute;">
<img src="img/dan/james-under-table.jpg" alt="James under table" style="top: 0%;
left: 5%;
width: 50%;
z-index: 20;
box-sizing: content-box;
border: solid 2rem white;
height: 40%;
position: absolute;">
<img src="img/dan/pumpkin-face.jpg" alt="Pumpkin face" style="top: 53%;
left: 49%;
width: 40%;
box-sizing: content-box;
height: 40%;
position: absolute;
border: solid 2rem white;
z-index: 20;">
</div>
</div>
<div class="section">
<div id="patrick" class="section-container">
<div class="pa-con">
<h2>James –<h2>
<p>You’ve done great things for VanArts’ Web dep’t. You’ve inspired our students and our instructors, and that’s an amazing accomplishment.</p>
<p>It’s been a privilege to work with you and I know that you’re going to do more amazing things wherever you go next. Stay in touch!</p>
<p>Patrick (the one instructor that doesn’t code & also sucks at Photoshop)</p>
</div>
</div>
</div>
<div class="section">
<div id="scott" class="section-container">
<div class="rocket-wrapper">
<img class="rocket" src="img/rocket.svg" alt="">
</div>
<div class="message">
<p>James, it’s been a pleasure and an honor to work with you over the last few years. Your interpersonal skills are the kind that make a manager a pleasure to interact with. Your planning, organization and dedication to the web program at VanArts brought further consistency and success to a great department at VanArts. I’m proud to have worked with you and wish you all the best in the future! –Scott Hastings</p>
</div>
</div>
</div>
</main>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/jquery.fullPage.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script>
<script src="js/home.js"></script>
<script src="js/teachers.js"></script>
</body>
</html>