Add files via upload

This commit is contained in:
NinjaCheetah 2020-05-31 17:03:06 -04:00 committed by GitHub
parent 1ab640a9ea
commit 137aebdc4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 577 additions and 0 deletions

BIN
Background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
NewNCGLogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

@ -0,0 +1,7 @@
{
"folders": [
{
"path": "."
}
]
}

BIN
TheArchive.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 MiB

22
aboutme.html Normal file
View File

@ -0,0 +1,22 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<h1>I am robot.</h1>
</body>
</html>

28
archive.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="archivestyle.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><a href="series.html">Exit</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="thearchive">
<img src="TheArchive.png" width="720" height="480">
<h1>Welcome to The Archive. Any series that has ended, on purpose or prematurely will appear here with all of its information.</h1>
</div>
<div class="series_links">
<ul>
<li><a href="fearthemods.html">Fear The Mods</a></li>
<li><a href="wasteland.html">Wastelands</a></li>
</ul>
</div>
</body>
</html>

86
archivestyle.css Normal file
View File

@ -0,0 +1,86 @@
.nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(0, 0, 0);
font-family: 'Montserrat', sans-serif;
}
.nav li {
float: left;
}
img {
float: left;
padding: 6px;
}
.nav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.img-container {
text-align: center;
display: block;
}
.nav li a:hover {
background-color: rgb(87, 87, 87);
}
.thearchive img {
float: left;
}
.thearchive h1 {
font-family: 'Inconsolata', monospace;
color: white;
}
body {
background-color: black;
background-image: radial-gradient(
rgba(0, 27, 150, 0.75), black 120%);
height: 100vh;
text-shadow: 0 0 5px #C8C8C8;
}
.series_links ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(0, 0, 0);
font-family: 'Montserrat', sans-serif;
}
.series_links li a {
display: block;
color: rgb(255, 255, 255);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.series_links li a:hover {
background-color: rgb(122, 122, 122);
}
.seriesinfo h1 {
font-family: 'Baloo Paaji 2', cursive;
text-align: center;
font-size: 64px;
color: white;
}
.seriesinfo h2 {
font-family: 'Baloo Paaji 2', cursive;
text-align: center;
font-size: 32px;
color: white;
}
.seriesinfo h3 {
font-family: 'Baloo Paaji 2', cursive;
text-align: center;
font-size: 24;
color: white;
}
.seriesinfo p {
font-family: 'Baloo Paaji 2', cursive;
color: white;
}

28
basebuilders.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="seriesinfo">
<h1>Base Builders</h1>
<h2>Base builders is a creative building series, where I am building a lab and an underground bunker. Please note that I am not by any means a profesional builder, so if you don't like how I'm building, just leave.</h2>
<p>Episode 1</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/2-Kg3nk35js" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>

31
drawingvids.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="back">
<a href="videos.html">Back</a>
</div>
<div class="drawinglinks">
<p>speed art 2 (my character)</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/iB1A54Hxvgc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>another animation made by me</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/6aq1OB-sJLQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>

27
fearthemods.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="archivestyle.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><a href="archive.html">Exit</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="seriesinfo">
<h1>Fear The Mods</h1>
<h2>Fear The Mods was a modded survival series, based in 1.7.10. The series had some building, some fighting, and mining, and was the first series to recieve custom made thumbnails.</h2>
<h3>Reason for discontinuation: World was corrupted</h3>
<p>First Episode</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/_V4XaSEoOfg" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>Last Episode</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/FI_ZP3TEqPs" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>

30
main.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="construction">
<img src="NewNCGLogo.png">
<h1>Welcome to my site!</h1>
<p>This site is under construction, so don't expect everything to work, or even to be completed.</p>
</div>
<div class="main_mainpage">
<h2>Navigate this site using the navigation bar at the top. This home page will get updated in the future.</h2>
</div>
</body>
</html>

29
minecraftvids.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="back">
<a href="videos.html">Back</a>
</div>
<div class="drawinglinks">
<p>The Last 10 Minutes (Awesome Bedwars Moments #1)</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/wYa3ApPhQ3E" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>

28
ncgsadventures.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="seriesinfo">
<h1>NCG's Adventures</h1>
<h2>NCG's Adventures is the revamped version of NinjaCheetah Gaming Adventures (NCGA). After the complete failure that NCGA was, I needed to create something new. This series takes a long time to set up, so episodes are very infrequent.</h2>
<p>Episode 1</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/4iATw6nAoIo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>

BIN
profile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

37
series.html Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="standard_heading">
<h1>This page contains current series running on my channel, and older ones that have been discontinued.</h1>
</div>
<div class="archive">
<ul>
<li><a href="archive.html">The Archive</a></li>
</ul>
</div>
<div class="series_links">
<ul>
<li><a href="basebuilders.html">Base Builders</a></li>
<li><a href="ncgsadventures.html">NCG's Adventures</a></li>
<li><a href="skylands.html"> Skylands</a></li>
</ul>
</div>
</body>
</html>

28
skylands.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="seriesinfo">
<h1>Skylands</h1>
<h2>Skylands is a survival series in a world made up of large floating islands, generated by Minecraft automatically, not built by a player. The void is now a big problem, and there are cliffs everywhere. This is the ultimate vanilla challenge.</h2>
<p>Episode 1</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/YuFV7ALy6Dg" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>

140
style.css Normal file
View File

@ -0,0 +1,140 @@
.nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
font-family: 'Montserrat', sans-serif;
}
.nav li {
float: left;
}
img {
float: left;
padding: 6px;
}
.nav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.img-container {
text-align: center;
display: block;
}
.nav li a:hover {
background-color: #111;
}
body {
background-color: #A2A2A2;
font-family: sans-serif;
}
.intro p {
font-size: 32px;
font-family: 'Montserrat', sans-serif;
}
.construction p {
color: crimson;
font-size: 24px;
text-align: right;
}
.construction h1 {
font-size: 48px;
text-align: right;
font-family: 'Baloo Paaji 2', cursive;
}
.main_mainpage h2 {
text-align: right;
font-family: 'Baloo Paaji 2', cursive;
}
.vidheading h1{
text-align: center;
font-family: 'Baloo Paaji 2', cursive;
}
.vidlinks ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(255, 255, 255);
font-family: 'Montserrat', sans-serif;
}
.vidlinks li a {
display: block;
color: rgb(0, 0, 0);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.vidlinks li a:hover {
background-color: rgb(112, 112, 112);
}
.back a {
color: black;
font-family: 'Baloo Paaji 2', cursive;
font-size: 24px;
text-decoration: none;
}
.standard_heading h1 {
font-family: 'Baloo Paaji 2', cursive;
font-size: 24px;
text-align: center;
}
.series_links ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(124, 124, 124);
font-family: 'Montserrat', sans-serif;
}
.series_links li a {
display: block;
color: rgb(0, 0, 0);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.series_links li a:hover {
background-color: rgb(255, 255, 255);
}
.archive ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(140, 255, 230);
font-family: 'Montserrat', sans-serif;
}
.archive li a {
display: block;
color: rgb(0, 0, 0);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.archive li a:hover {
background-color: rgb(0, 107, 80);
}
.seriesinfo h1 {
font-family: 'Baloo Paaji 2', cursive;
text-align: center;
font-size: 64px;
}
.seriesinfo h2 {
font-family: 'Baloo Paaji 2', cursive;
text-align: center;
font-size: 32px;
}

31
videos.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><img src="NewNCGLogo.png" width="50" height="50"></li>
<li><a href="main.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="series.html">Series</a></li>
<li><a href="aboutme.html">About Me</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="vidheading">
<h1>Here is the cream of the crop when it comes to my videos! Pick your catagory below.</h1>
</div>
<div class="vidlinks">
<ul>
<li><a href="minecraftvids.html">Minecraft</a></li>
<li><a href="drawingvids.html">Drawing</a></li>
</ul>
</div>
</body>
</html>

25
wasteland.html Normal file
View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="archivestyle.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<div class="nav">
<nav>
<ul>
<li><a href="archive.html">Exit</a></li>
</ul>
</nav>
</div>
</head>
<body>
<div class="seriesinfo">
<h1>Wasteland</h1>
<h2>Wasteland was a collaborative effort with myself, Leo the Lion, MintBranch99035 owo, and GJKweens. We were in a ruined version of the world we often play in, which is infested with zombies and has radiation in the air. Sadly nobody was interested in this series, and it was discontinued after just one episode, and the second was never released.</h2>
<h3>Reason for discontinuation: Lack of intrest from viewers and collaborators</h3>
<p>Only Episode (Second episode was recoreded but never posted)</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ZjUHPxAkVx0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>