0 Users appreciate this thread.
The Beginner's Guide to HTML
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.
2016-03-02 20:47:48
Security researcher, web developer, artist, and tech enthusiast.
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes
Here's the best source for HTML codes!
<html>
<head>
</head>
<body>
</body>
</html>
<head>
<title>My website</title>
</head>
This will add the title.
<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>
<script>
// Beginning of code
Code here
// End of code
</script>
You may ask for something below, I may know what you request.
2016-03-02 13:19:26