-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish.html
117 lines (105 loc) · 4.44 KB
/
english.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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Thank you!</title>
<meta name="description" content="A thank you note for James Finn by Silvana Agolli">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,300,600,700%7CRaleway:700|Chau+Philomene+One|Hammersmith+One' rel='stylesheet' type='text/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>
<div class="container" id="silvana">
<div class="top-bar">
<img class="icon" src="img/united_kingdom_icon.png">
<div class="styled-select blue">
<select onChange="window.location.replace(this.options[this.selectedIndex].value)">
<option value="web11.html">Irish</option>
<option selected value="">English</option>
</select>
</div>
</div>
<h2>Thank you, James!</h1>
<div class="slideshow-container">
<div style="background-color:rgb(21, 152, 103);" class="mySlides fade">
<!-- <div class="numbertext">1 / 3</div> -->
<!-- <img src="ireland-landscape.jpg" style="width:100%"> -->
<div class="text"><h1>I learned most of my coding skills from you. <br>I will not forget the excitement of learning how to make a slider in javascript.</h1></div>
</div>
<div style="background-color:rgb(255, 255, 255);" class="mySlides fade">
<!-- <div class="numbertext">2 / 3</div> -->
<!-- <img src="img2.jpg" style="width:100%"> -->
<div class="text"><h1 style="color:#4d4d4d;">I think teaching comes natural to you. <br>Your authority and commitment made you shine as one of the best instructors at vanarts.</h1></div>
</div>
<div style="background-color:rgb(252, 102, 33);" class="mySlides fade">
<!-- <div class="numbertext">3 / 3</div> -->
<!-- <img src="img3.jpg" style="width:100%"> -->
<div class="text"><h1>Wish you all the best with your career wherever that may be.<br>
Thank you again.
</h1></div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
<!-- <script src="jquery.min.js"></script>
<script src="jquery.plugin.min.js"></script>
<script src="bootstrap.min.js"></script> -->
<script type="text/javascript">
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
</script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script>
<script src="js/home.js"></script>
</body>
</html>