<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta property="og:title" content="OvO Mod Client"> <meta property="og:site_name" content="OvO Modded"> <meta property="og:description" content="This is a mod client made by drakeerv to play OvO either modded or vanilla. Special thanks to annihilazer and skymen for helping with some of the mods!"> <meta property="og:type" content="website"> <meta property="og:image" content="../icons/icon-512x512.png"> <title>OvO Modded Moved</title> <link rel="icon" href="../icons/icon-512x512.png"> <link rel="apple-touch-icon" href="../icons/apple-touch-icon.png"> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" integrity="sha384-ZWVWHtVXe6iXlrq2TaMORj9u/iKpANXPxjPc22YgKh1GD2fGLeNV3W+0cJtM09RF" crossorigin="anonymous"> <link rel="stylesheet" href="style.css"> <script src="//cdn.polyfill.io/v3/polyfill.min.js"></script> <script async src="//www.googletagmanager.com/gtag/js"></script> <script src="analytics.js"></script> </head> <body class="bootstrap bg-dark text-light pt-5"> <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> <a class="navbar-brand ps-3 navbar-special-ukraine" href="/"> <img src="../icons/icon-512x512.png" width="30" height="30" class="d-inline-block align-top" alt="OvO Branding Logo"> OvO Modded </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarCollapse"> <ul class="navbar-nav mr-auto"> <li class="nav-item active"> <a class="nav-link" href="index.html">Home</a> </li> <li class="nav-item"> <a class="nav-link" href="about.html">About</a> </li> <li class="nav-item"> <a class="nav-link" href="settings.html">Settings</a> </li> <li class="nav-item"> <a class="nav-link fw-bold" href="modcreator/index.html">Mod Creator (NEW)</a> </li> </ul> </div> <ul class="nav navbar-nav ml-auto"> <h3 link="//dedragames.com/" alt="Dedra Website" class="pe-3 bi bi-globe clickable-link"></h3> <h3 link="//discord.com/invite/jfWkSfxXZ8" alt="Discord Server" class="pe-3 bi bi-discord clickable-link"> </h3> </ul> </nav> <div class="bg-primary text-white p-5 text-center"> <h1>About</h1> <p>About OvO Modloader.</p> </div> <div class="container-fluid jumbotron"> <br /> <div class="col-sm-8 mx-auto"> <h1>Moved</h1> <p>After a major refactor, this file has been moved to the following url.</p> <p> <a class="btn btn-primary text-white" href="../versions/1.4.4/index.html" role="button">Lets Play! »</a> </p> </div> <br /> </div> <footer class="footer sticky-bottom bg-dark text-center text-white"> <div class="text-center p-3" style="width: 100%; background-color: rgba(0, 0, 0, 0.2);"> Made by drakeerv with help from annihilazer, skymen, and the <a class="text-light" href="//discord.com/invite/jfWkSfxXZ8">OvO Community</a> </div> </footer> <script src="//cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> <script src="script.js"></script> </body> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>