-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphics.html
40 lines (32 loc) · 1.42 KB
/
graphics.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
<!-- javascript, bootstrap, and jquery cdn -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- css -->
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link href="css/design_styles.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/fonts.css">
</head>
<body id="full-graphics" class="full">
<nav class="navbar navbar-default navbar-static-top">
<div id="nav-placeholder"></div>
</nav>
<script>
$("#nav-placeholder").load("../nav.html", function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error with navbar: ";
$("#nav-placeholder").html('<h3>' + msg + xhr.status + " " + xhr.statusText + '</h3>');
}
});
</script>
<div class="design-footer">
<b>Design</b> | Graphics
</div>
</body>
</html>