Initial Commit
This commit is contained in:
68
index.php
Normal file
68
index.php
Normal file
@@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
<title>Iron Horse Game Development</title>
|
||||
<meta name="description" content="Game and Software development division of Halbear Networking & Software Ltd">
|
||||
<meta name="keywords" content="Software, Games, Gaming, Halbear.Net, Halbear, Iron Horse Game Development, Iron Horse, Plane Building, Lost Contact, War Horse, Iostiler, Expedition Emberleaf">
|
||||
<link rel="stylesheet"href="StyleSheets/MainStyle.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Boldonse&family=DotGothic16&family=Lexend:wght@600&display=swap" rel="stylesheet">
|
||||
<link rel="prefetch" href="SiteAssets/warhorseinengine.png">
|
||||
<link rel="prefetch" href="SiteAssets/spaceship.png">
|
||||
<link rel="prefetch" href="SiteAssets/LostContactInSpace.png">
|
||||
<link rel="prefetch" href="SiteAssets/Isotiler.png">
|
||||
</head>
|
||||
<body>
|
||||
<div class="Content">
|
||||
<div style="background-image: url('SiteAssets/FrugerImage.png');" class="ContentPage">
|
||||
<div class="ContentWindow" style="margin-left: 10vh; margin-top: 17vh; height: 75%; width: 30%">
|
||||
<div style="display: flex; flex-direction: column; align-content: center; justify-content: space-between; align-items: center;">
|
||||
<a class="Title">Who is Iron Horse Software?</a>
|
||||
<a style="margin-left:5vh;margin-right:5vh;" class="WhiteContentFont">Iron Horse Software is a game and software developer based in Wales(UK) with a wide range of skills in 3D and 2D game development across a range of game engines, mainstream and proprietary!<br><br>Iron Horse Software has an Anti LLM based AI stance, and we do not use LLM AI to generate assets or code, we make all our assets in house and avoid using asset packs as well</a>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="background-image: url('SiteAssets/Isotiler.png');" class="ContentPage" id="SkillsSection">
|
||||
<div class="ContentWindow" style="margin-left: 60vw; margin-top: 10vh; height: 75%; width: 30%">
|
||||
<div style="display: flex; flex-direction: column; align-content: center; justify-content: space-between; align-items: center;">
|
||||
<a class="Title">Our Skills</a>
|
||||
<a style="margin-left:5vh;margin-right:5vh;" class="WhiteContentFont">We are capable of using a large range of software and programming languages! <br>Among the engines we have experience in, there is notably Unreal Engine(both C++ and Blueprints), Godot and Roblox Studio. <br><br>We have proprietary game engine experience in development of a C# GDI+ engine, C++ OpenGL engine, Java OpenGL Engine and a Java Vulkan Engine!<br><br>Our language expertise spans C#, C++, Java, Python, Javascript, Kotlin, PHP, GLFW, OpenGL and Vulkan, we also have expertise in Multithreading techniques to maximise perfomance</a>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="height: 20vh; width: 100%; display: flex; flex-direction: row; align-content: space-between; justify-content: space-between">
|
||||
<div style="height: 100%; width: 40%; display: flex; flex-direction: column; align-content: space-evenly; justify-content: space-evenly; ">
|
||||
<a style="font-family: 'Boldonse', system-ui; font-size: 1.5vh;margin-top: 2vh;margin-left: 5vh; color: white">©Halbear Networking & Software Ltd 2025</a>
|
||||
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-left: 5vh;color: white; cursor: pointer" onclick="this.href='https://halbear.net/'">Visit Halbear.net</a>
|
||||
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-bottom: 2vh;margin-left: 5vh;color: white; cursor: pointer;" onclick="this.href='https://halbear.net/termsAndConditions.html'">HalbearNet User Agreement</a>
|
||||
</div>
|
||||
<div style="height: 100%; display: flex; flex-direction: column; align-content: space-evenly; justify-content: space-evenly; ">
|
||||
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh; margin-top: 2vh;margin-right: 5vh; color: white">Support</a>
|
||||
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-right: 5vh;color: white">Forums</a>
|
||||
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-bottom: 2vh;margin-right: 5vh;color: white">User Agreement</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
const SkillsSection = document.getElementById('SkillsSection');
|
||||
const Images = ["Isotiler.png","warhorseinengine.png","spaceship.png","LostContactInSpace.png"];
|
||||
var Iterator = 0
|
||||
function SetImage(){
|
||||
if (Iterator >= Images.length) Iterator = 0;
|
||||
SkillsSection.style.backgroundImage = "url('SiteAssets/" + Images[Iterator] + "')";
|
||||
Iterator++;
|
||||
setTimeout(SetImage, 5000);
|
||||
}
|
||||
SetImage();
|
||||
</script>
|
||||
<?php
|
||||
$Page = "home";
|
||||
require_once("Hotbar.php");
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user