Talk about HTML and CSS here. Below, I will put some HTML basics (like extreme basics).
<!DOCTYPE html> - Defines something as html on a webpage. Once put at the beginning once.
<html> </html>- Start of an HTML page.
<title> </title> - Title of the Webpage (seen at the top of your screen or wherever the other tabs are for you)
<body> </body> - Body is for stuff like <h#>, <p#>, and more. You can have CSS here.
<h1-6> </h1-6>- Headers for text. You can have CSS in it.
<p1-6> </p1-6> - Paragraphs for text. You can have CSS in it.
To add CSS, you can do inline or separate files. You can also do <style> for it as well but I would recommend inline or separate files in most cases xD.
Example of a Basic HTML page:
<!DOCTYPE html>
<html>
<title>Rick Astley's Blog</title>
<body>
<h1>Hello! I am Rick Astley</h1>
<p1>I will never give you up, never let you down, never run around and desert you, never make you cry, never say goodbye, and never tell a lie to hurt you/</p1>
</body>
</html>
Forgot I wrote this tutorial XD. Very basic, but it might get the ball rolling so we'll see. There's some stuff I left out so I should probably make an updated version (perhaps as a website article?) but whatever.
The distinguished noobishpro spake:[quote]i read it all