Website Megathread
Apparently I got addicted to website coding, so to see how many people like making websites, I decided to make this thread.
Coding a website:
Websites are made from HTML (Hypertext Markup Language)and CSS (Cascading Style Sheets)
also optional is JavaScript for interactive and custom animations
The bodys of HTML, CSS, and JavaScript would look something like this:
HTML:<!DOCTYPE: html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<script type='text/javascript' src='script.js'></script>
<title>Title Here</title>
</head>
<body>
<p>Text Goes Here</p>
</body>
</html>
CSS:p {
color: red;
}
JavaScript:$(document).ready(function() {
$("p").append("<p>Text Goes Here</p>");
});
How to code a website:There's plenty of websites and videos to help you start coding your own website.
Lets start with HTML...
The p for means paragraph.
With this you can right text with it.
<p>My very own text!</p>
Outcome:My very own text!
The b means bold.
With this you can make strong text.
<b>Bold Text</b>
Outcome:Bold Text
I can update the topic later if needed.