-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjavascript.html
More file actions
110 lines (89 loc) · 4.16 KB
/
javascript.html
File metadata and controls
110 lines (89 loc) · 4.16 KB
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
<!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]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>The Bookmark Project || Web Design Bootcamp 2014</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="header">
<section id="section-works" class="section appear clearfix">
<div class="container">
<div class="row mar-bot40">
<div class="col-md-offset-3 col-md-6">
<div class="section-header">
<h2 class="section-heading animated">JavaScript & jQuery</h2>
<p>Our favourtie plugins & more!</p>
</div>
</div>
</div>
<div class="row">
<nav id="filter" class="col-md-12 text-center">
<ul>
<li><a href="index.html" class="btn-theme btn-small">Home</a></li>
<li><a href="about.html" class="btn-theme btn-small">About</a></li>
<li><a href="contact.html" class="btn-theme btn-small">Contact</a></li>
</ul>
</nav>
<div class="col-md-12">
<div class="row">
<div>
<table class="table">
<thead>
<tr>
<th>Link</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://github.com/sorrycc/awesome-javascript" target="_blank">Awesome Javascript</a>
</td>
<td>A big list of Javascript resources.</td>
</tr>
<tr>
<td>
<a href="http://www.gocharlie.co.nz/works/code/index.html" target="_blank">My code</a>
</td>
<td>Charlie's code page hosted on <a href="http://www.gocharlie.co.nz" target="_blank">www.gocharlie.co.nz</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="footer" class="section footer">
<div class="container">
<div class="row animated opacity mar-bot20">
<div class="col-sm-12 align-center">
<ul class="social-network social-circle">
<li><a href="#" class="icoFacebook" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" class="icoGoogle" title="Google +"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#" class="icoLinkedin" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="row align-center copyright">
<div class="col-sm-12"><p>Copyright © 2014 || YOOBEE Web Design Bootcamp 2014</p></div>
</div>
</div>
</section>
<a href="#header" class="scrollup"><i class="fa fa-chevron-up"></i></a>
<script src="js/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>