-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Thank you, James</title>
<link href="https://fonts.googleapis.com/css?family=Chau+Philomene+One|Hammersmith+One" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body id="home">
<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="mainText">
<svg viewBox="0 0 2000 700">
<!-- Symbol -->
<symbol id="s-text">
<text text-anchor="middle"
x="50%" y="20%" dy=".35em">
Thank you
</text>
<text text-anchor="middle"
x="50%" y="70%" dy=".35em">
James!
</text>
</symbol>
<!-- Duplicate symbols -->
<use xlink:href="#s-text" class="text"
></use>
<use xlink:href="#s-text" class="text"
></use>
<use xlink:href="#s-text" class="text"
></use>
<use xlink:href="#s-text" class="text"
></use>
<use xlink:href="#s-text" class="text"
></use>
</svg>
</div>
<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>