This repository has been archived by the owner on Jan 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblog.html
62 lines (53 loc) · 1.76 KB
/
blog.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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<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="stiller.css">
<link rel="stylesheet" type="text/css" href="fontlar.css">
<link rel="stylesheet" type="text/css" href="animate.css">
<link href="font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.png" />
<meta charset="UTF-8">
<script src="jquery-3.3.1.js"></script>
</head>
<div class="sargi">
<nav>
<div class="menu-icon">
<i class="fa fa-bars fa-2x"></i>
</div>
<div class="menu">
<a href="index.html"><div class="logo">
<img class="minilogo" src="resimler/logo.png" alt=""></img>
</div></a>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="https://www.liceoitaliano.net/">ımı</a></li>
<li><a href="https://mercode.org">Mercode</a></li>
</ul>
</div>
</nav>
</div>
<body>
<p class="bigyazi" id="bigyazi1">/***HackUP Is Opened!</p>
<p class="ortayazi">###27 June 2019</p>
<p class="miniyazi" id="miniyazi1">Hi everybody. HackUP is opened today!</p>
<br />
<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>
</body>
</html>