forked from Sideflipsa-ga/sideflipsaga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SideFlipSaga-for-Mac-and-Linux.html
48 lines (48 loc) · 1.94 KB
/
SideFlipSaga-for-Mac-and-Linux.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
<!DOCTYPE html>
<!-- Shows that this is in HTML 5-->
<html lang="en-US">
<!--Shows that this is where the HTML is and, that it is in English -->
<head>
<!--Shows what is in the tab bar -->
<meta charset="UTF-8">
<!--Shows that this is using UTF-8 -->
<title>About Sideflipsaga</title>
<!--Tells the web browser what text to display in the tab bar -->
<link rel="shortcut icon" type="image/jpg" href="Images/logo.jpeg"/>
<!--Adds a favicon and, says where to find it -->
</head>
<body>
<!--Says that anything in this tag is in the body -->
<h1>About SideFlipSaga</h1>
<!--h1 is the largest type of heading -->
<img src="Images/rabbit.jpeg" width="259" height="194" alt="A rabbit">
<!--Inserts an image and, says all the information the web browser will need about that image -->
<p>This is Sideflipsaga made by Gabe and now Jacob</p>
<!--A paragraph -->
<p>We post pretty much <strong><u>what ever</u></strong> we want <strong><u>when ever</u></strong> we want</p>
<!--A paragraph -->
<p>Our GitHub</p>
<iframe src="https://github.com/Sideflipsa-ga" name="OurGitHub"></iframe>
<!--An iframe and the information that the web broser needs about it -->
<p>Things you can download from us</p>
<ul>
<!--Start of a list -->
<li>Minecraft worlds (bedrock and java)</li>
<li>open source python and java files</li>
<!--Things that are in the list -->
</ul>
<!--End of the list -->
<a href="http://bluefish.openoffice.nl/">Made partly with Bluefish HTML editor.</a>
<!--A link -->
<h6>WARNING! this website is made for Firefox some things may not work in Chrome, Safari, etc</h6>
<!--Smallest type of heading -->
<script src="JS/Most-of-my-JS.js"></script>
<!-- Links most of my JS-->
<script src="JS/My-other-JS.js"></script>
<!-- Links most of my JS-->
<link rel="stylesheet" type="text/css" href="CSS/Just-my-CSS.css" media="screen"/>
<!-- Links my CSS-->
<link rel="stylesheet" type="text/css" href="CSS/iframe.css" media="screen"/>
<!-- Links the style sheet for my iframe-->
</body>
</html>