forked from Sumotoad987/LPTC-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorial-scratch-shoot-the-balls.php
85 lines (85 loc) · 3.1 KB
/
tutorial-scratch-shoot-the-balls.php
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
<!DOCTYPE html>
<html>
<head>
<title>Tutorials</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.lettering.js"></script>
<!-- Custom Theme files -->
<!--theme-style-->
<link href="css/style.css?v=1.31" rel="stylesheet" type="text/css" media="all" />
<!--//theme-style-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Scientist Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<?php
include_once('includes/dbconnect.php');
$sql = 'Select Header From Settings';
$result = $connection->query($sql);
if($result->num_rows > 0){
$row = $result->fetch_assoc();
echo($row['Header']);
}
?>
</head>
<body>
<!--header-->
<div id="header" class="purple" style="width:100%">
<div class="container">
<a href="index.html"><img src="images/coderdojo.png" class="coderdojo"></a>
<div class="top-nav">
<?php
include('Content/siteNavigation.php');
?>
<script>
$("span.menu").click(function(){
$(".top-nav ul").slideToggle(500, function(){
});
});
</script>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="content">
<div class="container">
<div class="tutorial-content">
<div class="tutorial-headers">
<h2>Shoot the balls</h2>
<h3>By Jake Feeney</h3>
</div>
<center>
<a href="Shoot-The-Balls.pdf">Shoot the balls(PDF)</a>
<br>
<a href="https://scratch.mit.edu/projects/173063239/">Template for the project</a>
</center>
</div>
</div>
<div class="content-right">
<div class="col-md content-right-top">
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="col-md-4 footer-top">
<h3><a href="http://www.coderdojo.com">coderdojo</a></h3>
</div>
<div class="col-md-4 footer-top1">
<ul class="social">
<li><a href="https://www.facebook.com/Coderdojo-Leixlip-216306561898011/?fref=ts"><i class="facebook"> </i></a></li>
<li><a href="https://twitter.com/LPTCDojo"><i class="twitter"></i></a></li>
</ul>
</div>
<div class="col-md-4 footer-top2">
<p >© 2015 - 2016. All rights reserved | Designed and developed by <a href="http://rianscode.com/" target="_blank">Rían Errity</a> | Developed by <a href="http://beattbots.com/" target="_blank">Richard Beattie</a>. All Images are used under the "fair usage policy under the copyright act."</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
</body>
</html>