-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (83 loc) · 4.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Mourhaf Kazzaz - Portfolio</title>
<meta name="description" content="" />
<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.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.compat.css" integrity="sha512-c42qTSw/wPZ3/5LBzD+Bw5f7bSF2oxou6wEb+I/lqeaKV5FDIfMvvRp772y4jcJLKuGUOpbJMdg/BTl50fJYAw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/animate.css" />
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<div class="bg_container"></div>
<div class="container">
<div class="left_panel">
<div class="profileText">
<div class="imgBox">
<img src="img/profile.jpg" alt="profileImage" />
</div>
<h2 >Mourhaf Kazzaz</h2>
<h3 class="animated rubberBand score">Computational Linguist</h3>
</div>
<div class="navigation">
<ul>
<li class="list" data-url="templates/info.html"><a href="#" class = "nav_link" data-text=" Information" > Information</a></li>
<li class="list" data-url="templates/edu.html"><a href="#" class = "nav_link" data-text=" Education"> Education</a></li>
<li class="list" data-url="templates/exp.html"><a href="#" class = "nav_link" data-text=" Experience"> Experience</a></li>
<li class="list" data-url="templates/proj.html"><a href="#" class = "nav_link" data-text=" Projects"> Projects</a></li>
<li class="list" data-url="templates/skills.html"><a href="#" class = "nav_link" data-text=" Skills"> Skills</a></li>
</ul>
</div>
</div>
<div class="right_panel" id="content">
</div>
<div class="popup">
<h2 class="message">message</h2>
<b class="close">X</b>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/icon_game.js"></script>
<script>
// when the document is loaded
$(document).ready(function(){
score = 0
reset = 0
// load info section and activate links after page ready
$('#content').load("templates/info.html");
$('.list').first().addClass('active').children().addClass('active');
// navigation clicks
$('.list').on('click',function(e){
// remove all active classes
$('.list').each(function(i, obj) {
$(this).removeClass('active').children().removeClass("active");
})
// activate link for style and li for indentation
$(this).addClass('active').children().addClass("active");;
// load the template into content div
url = $(this).attr("data-url");
$('#content').load(url);
e.preventDefault();
});
});
</script>
</html>