-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
123 lines (113 loc) · 4.68 KB
/
portfolio.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
<!DOCTYPE HTML>
<html>
<head>
<title>Portfolio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/main_portfolio.css" />
<link href='https://fonts.googleapis.com/css?family=Antic' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Audiowide' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
font-family: Antic;
</style>
<script >
var i = 0;
var txt = 'Meet Our Team';
var speed = 100;
function typeWriter() {
if (i < txt.length) {
document.getElementById("self-type").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
</script>
</head>
<body onload="typeWriter()">
<div id="particles-js">
<div class="btext">
<p id="self-type" style="letter-spacing: 3px; font-size: 6rem; font-family:Audiowide; color:white;"></p>
</div>
</div>
<!-- Main -->
<section id="main">
<!-- Banner -->
<section id="banner">
<div class="inner">
<div><a href="https://www.youtube.com/channel/UCUNiIINSUu2psmiEOUgL1xQ" target="_blank"><i class="fa fa-play-circle-o" style="font-size: 9rem;"></i></a></div>
<br>
<p>Watch out</p>
</div>
</section>
<!-- Gallery -->
<section id="galleries">
<!-- Photo Galleries -->
<div class="gallery">
<header class="special">
<h2>Hall 2 Managers</h2>
</header>
<div class="content">
<div class="media all people">
<a href="images/fulls/01.jpg"><img src="images/thumbs/01.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all place">
<a href="images/fulls/05.jpg"><img src="images/thumbs/05.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all thing">
<a href="images/fulls/09.jpg"><img src="images/thumbs/09.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all people">
<a href="images/fulls/02.jpg"><img src="images/thumbs/02.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all place">
<a href="images/fulls/06.jpg"><img src="images/thumbs/06.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all thing">
<a href="images/fulls/10.jpg"><img src="images/thumbs/10.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all people">
<a href="images/fulls/03.jpg"><img src="images/thumbs/03.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all place">
<a href="images/fulls/07.jpg"><img src="images/thumbs/07.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all thing">
<a href="images/fulls/11.jpg"><img src="images/thumbs/11.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all people">
<a href="images/fulls/04.jpg"><img src="images/thumbs/04.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all place">
<a href="images/fulls/08.jpg"><img src="images/thumbs/08.jpg" alt="" title="This right here is a caption." /></a>
</div>
<div class="media all thing">
<a href="images/fulls/12.jpg"><img src="images/thumbs/12.jpg" alt="" title="This right here is a caption." /></a>
</div>
</div>
</div>
</section>
</div>
<!-- Scripts -->
<script src="particles.min.js"></script>
<script>
particlesJS.load('particles-js', 'particles.json',
function(){
console.log('particles.json loaded...')
})
</script><!--
<script>
var typed = new Typed('.element', {
strings: ["First sentence.", "Second sentence."],
typeSpeed: 30
});
</script> -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>