-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
83 lines (73 loc) · 2.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="tr">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<head>
<title>HackUP</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="fontlar.css">
<link href="font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="shortcut icon" href="resimler/favicon.png" />
</head>
<header>
<div class="header">
<div class="headerdiv">
<a href="index.html"><img src="resimler/logo.svg" class="logo" alt="HackUP"></a>
</div>
<div class="headerbuttondiv">
<a href="#underdevelopment" class="headerbutton">Blog</a>
<a href="#underdevelopment" class="headerbutton">Register</a>
<a href="#underdevelopment" class="headerbutton">IMI</a>
</div>
</div>
</header>
<body>
<div class="hero">
<p class="bigyazi" id="bigyazi1">printf "<span id=ityped></span>";</p>
<p class="miniyazi">function Welcometo(HackUp) {
<br/><span id="ityped2"></span>
<br/>};
</p>
<br/>
<div class="dalga"></div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(".menu-icon").on("click", function() {
$("nav ul").toggleClass("showing");
});
});
$(window).on("scroll", function() {
if ($(window).scrollTop()) {
$('nav').addClass('black');
} else {
$('nav').removeClass('black');
}
})
</script>
<script type="text/javascript" src="ityped.js"></script>
<script type="text/javascript">
window.ityped.init(document.querySelector('#ityped'),{
loop: false,
cursorChar: "_",
strings : ['Welcome to HackUP!']
})
window.ityped.init(document.querySelector('#ityped2'),{
loop: false,
showCursor: false,
startDelay: 1700,
typeSpeed: 70,
strings : ['HackUP is an IT club and Hackerspace formed by students of IMI High School.']
})
</script>
<!--strings : ['HackUP is an IT club formed by High School and University students worldwide. It is currently present in IMI High School.']-->
</body>
<footer>
<div class="footer-sosyal-ikon">
<ul>
<li><a href="https://github.com/hackup-org"><i class="fa fa-github-alt" aria-hidden="true"></i></a></li>
<li><a href="https://www.twitch.tv/hackuporg"><i class="fa fa-twitch" aria-hidden="true"></i></a></li>
<li><a href="https://t.me/hackuporg"><i class="fa fa-telegram" aria-hidden="true"></i></a></li>
</ul>
</div>
</footer>
</html>