Run the Minecraft Server
26 Aug 2025CC 4.0 By So
Run the Minecraft Server
screen java -Xms4G -Xmx4G -jar minecraft_server_1.21.10.jar nogui ctrl A+D
CC 4.0 By So
screen java -Xms4G -Xmx4G -jar minecraft_server_1.21.10.jar nogui ctrl A+D
This is a website for learning HTML, JS, and CSS.
HTML stands for HyperText Markup Language, and it’s the language designed for webpages. Almost every website uses HTML.
Here’s an example of HTML:
<!DOCTYPE html>
<html>
<head>
<title>Hello, World!</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first HTML page.</p>
</body>
</html>
Click here for the output.
JavaScript, shortened as JS, is a programming language to make your HTML pages more functional. Templates are below.
// Create an element
const myNewElement = document.createElement("p");
myNewElement.innerText = "Hi!";
document.body.appendChild(myNewElement);
// Change properties
const myElement = document.getElementById('example-element');
myElement.innerText = "SHH!";
CSS is to style your pages with properties and things. It’s not required, but you could embed CSS using the <style> tag or the <link> tag. For example, if you want to import your stylesheet like this: <link rel="stylesheet" href="styles.css" />
<html>
<head>
<style src="details.css">
<title>My Web</title>
<script src="javascript-goes-here.js">
</head>
<body>
<button onclick="createText()">Click Me!</button>
<p id="change-the-text-of-this"></p>
</body>
</html>