-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
60 lines (47 loc) · 1.9 KB
/
Copy pathindex.php
File metadata and controls
60 lines (47 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Commandblock Academy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="css/basic.css" rel="stylesheet">
<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>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Commandblock Academy</h1>
<div class="row text-center">
<img src="Command_Block.png"/>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h3>Welcome!</h3>
<?php
echo "Hello world!";
?>
<p>Here soon you can learn how to program command blocks!</p>
<p>Soon we'll be adding lessons on how to do some of the impressive things you've seen people do in Minecraft on YouTube.</p>
<p>You'll learn how to easily do things that you wouldn't even know you could.</p>
</div>
<div class="col-sm-4">
<h3>You can do things like...</h3>
<p>Build your own game-within-a-game</p>
<p>Make impossibly strong items!</p>
<p>Impress your friends with special effects!</p>
<p>Make villagers that sell what YOU want!</p>
</div>
<div class="col-sm-4">
<h3>About me</h3>
<p>I'm Robert Thorne, but you can call me plasmarob. I'm finishing a degree in Computer Science, and I'm known as a redstoner. I've built minigames and automated all kinds of machinery. I made an RPG set of villagers for a server once. I'm about to start a YouTube channel soon!</p>
<p><a href="assignments.html" >Assignments</a></p>
<p><a href="register.php" >Register</a></p>
<p><a href="login.php" >Login</a></p>
</div>
</div>
</div>
</body>
</html>