Username:
Password:
Remember me:
Register

Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)


Search forums via Google


0 Users appreciate this thread.

The Beginner's Guide to HTML
Started by squirtle2016
(2016-02-11 01:07:15)
squirtle2016 (2016-02-11 01:07:15)
Here's the best source for HTML codes!

Starting off show
OK, so you want to make a website? Start off by opening a Notepad file or whatever you do. Once you have it opened, type in or copy/paste all of this.

<html>
<head>
</head>
<body>
</body>
</html>



Head show
We'll start inside the <head></head> tags. This is where you put the script, title, etc. Set the title like this:

<head>
<title>My website</title>
</head>


This will add the title.


Body show
The body is where you add the links, text, etc. Basically, it's what the visitors see. Let's add some text.

<body>
<h1>This Is A Heading</h1>
<p>This is a paragraph.</p>
</body>


Yields this:

This Is A Heading

This is a paragraph.

Now we'll add a link. Add it like this:

<a href="http://www.google.com">Go to Google</a>

Yields this:

Go to Google

Now for an image. I will use a Mewtwo image.

<img src="http://sprites.pokecheck.org/i/150.gif">

Yields this:



Scrolling text:

<marquee>Text here</marquee>

Buttons:

<button style="button" onclick="Stuff to do with the button">Button text</button>

Line break:

<br> or <br />

Centering items:

<center>Centered items</center>


Scripts show
This fits in both the <head> and <body> tags.

<script>
// Beginning of code
Code here
// End of code
</script>


You may ask for something below, I may know what you request.

This post has been edited one or more times, the last time was:
2016-03-02 13:19:26

Stop, or you die.
squirtle2016 (2016-02-11 01:19:04)
RENAME REQUEST: "The Beginner's Guide to HTML"
Stop, or you die.
NodePoint (2016-02-29 10:40:03)
Please edit in your changes to the OP as this counts as double posting.

EDIT: also don't keep bumping this thread by posting and deleting your post.

This post has been edited one or more times, the last time was:
2016-03-02 20:47:48

Security researcher, web developer, artist, and tech enthusiast.
 

Log in to submit a comment

This topic's ID: 82133

Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)




Total registered users: 8321
New registered users today: 7
Newest registered user: ElegantVulpes

©  Copyright 2026 3DSPlaza. All Rights Reserved