BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup

Join the forum, it's quick and easy

BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup
BullyWiiHacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.
BullyWiiHacks

Gaming, Modding & Programming

Important reminders:

- Click *HERE* for advanced forum search or check out the text field below on the front page for Google before posting
- NO support via private message (use the forum)
- Write meaningful topic titles
Site Translation
Latest topics
» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
HTML Tutorial Part 1 "The Beginning" Empty5/16/2024, 8:25 am by Bully@WiiPlaza

» Bully Made It Into a BIG Video 400K Views
HTML Tutorial Part 1 "The Beginning" Empty4/7/2024, 6:58 am by Bully@WiiPlaza

» Wii Play Tanks
HTML Tutorial Part 1 "The Beginning" Empty3/24/2024, 2:46 pm by helpmeout

» [Bypass Paywalls] (Global) @magnolia1234 - GitLab
HTML Tutorial Part 1 "The Beginning" Empty3/18/2024, 3:55 am by Seth@WiiPlaza

» [Download] Mary Shelley's Frankenhole
HTML Tutorial Part 1 "The Beginning" Empty3/16/2024, 8:29 am by Seth@WiiPlaza

» Completely Custom Modded Controllers (Undetectable)
HTML Tutorial Part 1 "The Beginning" Empty3/5/2024, 1:55 pm by Shadow@BWH

» (Zombies) Drink perks code?
HTML Tutorial Part 1 "The Beginning" Empty3/5/2024, 1:24 pm by Shadow@BWH

» Die Rückkehr zu STEAM und WARFACE
HTML Tutorial Part 1 "The Beginning" Empty3/2/2024, 3:54 am by Seth@WiiPlaza

» First person hand model change?
HTML Tutorial Part 1 "The Beginning" Empty2/28/2024, 4:53 am by Ad3lamac611

» {RELEASE} Field Raider Firefox v1.72 by Seth@WiiPlaza
HTML Tutorial Part 1 "The Beginning" Empty2/21/2024, 8:52 am by naxil

Search
 
 

Display results as :
 


Rechercher Advanced Search

May 2024
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  

Calendar Calendar

Country Statistics
Free counters!

You are not connected. Please login or register

HTML Tutorial Part 1 "The Beginning"

3 posters

Did you enjoy the way I did the tutorial?

HTML Tutorial Part 1 "The Beginning" I_vote_lcap50%HTML Tutorial Part 1 "The Beginning" I_vote_rcap 50% [ 2 ]
HTML Tutorial Part 1 "The Beginning" I_vote_lcap0%HTML Tutorial Part 1 "The Beginning" I_vote_rcap 0% [ 0 ]
HTML Tutorial Part 1 "The Beginning" I_vote_lcap50%HTML Tutorial Part 1 "The Beginning" I_vote_rcap 50% [ 2 ]
HTML Tutorial Part 1 "The Beginning" I_vote_lcap0%HTML Tutorial Part 1 "The Beginning" I_vote_rcap 0% [ 0 ]
Total Votes : 4


Go down  Message [Page 1 of 1]

I Am The Aki

I Am The Aki

Welcome,
to my tutorial on HTML for Web Development.
Today we are going to go over, the extreme basics of learning HTML.

---What HTML Stands For & What it does---

HTML is an acronym for the words
Hyper
Text
Mark-up
Language
(HTML)
_____________________________________________________
HTML's function is to make the base of the website other words the text,spacing,links,pictures,e-mail links,videos,and sometimes even the time date and year!

Now please bare with me through these series of tutorials. I guarantee that by the end of my HTML tutorials you will understand how a lot of these websites bases were made.
_____________________________________________________

---All HTML Tags You Have To Memorize---

Here are all the basic HTML tags or commands that you have to memorize.

Before starting, I encourage you to go ahead and open up notepad++ (The Post That is Below where you select the type of tutorial you would like.)


  • <!doctype html> -- This is telling the web browser that this part of the webpage is going to be composed of text, links, images, and videos, etc. (you must have this at the top of every document) {will be covered in the next tutorial i.e part 2.}
  • <html></html> -- This is telling the browser that everything inside of the <html>(i.e. HERE)</html> tagwill be composed of text. (all was put this after <!doctype html> on a separate line.)
  • <head></head> --- This Tells the web browser to place what the title says as the text in the tab.
  • <title></tile> --- This is the text that will be displayed in the tab. (Always put in side of <head></head> and on it's own line. (Part 2 goes into farther detail with examples and a file or two to show examples.
  • <body></body> --- tells the browser that everything inside of this will be text on the page.
  • <h1></h1> --- This is a header, it goes from H1 to H6.
    H1 to H3 is all bigger then standard text. H4 to H6 is all smaller then average text and mainly used for captions or fine print.
  • <ul></ul> -- This stands for Un-ordered list every thing inside this will be marked by bullet points.
  • <ol></ol> -- This stands for ordered list. Everything inside this will be pre-ceded by a number.
  • <li></li> used inside <ul></ul> and <ol></ol>.
    Tells Where the bullet/text will be for the list.
  • <strong></strong> -- Makes the word or words inside of the tag bold.
  • <em></em> -- Makes the word or words inside of the tag in italics or emphasized.
  • <u></u> -- Makes the word or words inside of the tag have a line under it.
  • <a href=""></a> -- tell the text inside of it that the text is going to have a link connected to it.
  • <img src="img url" height="number of pixels high" width="number of pixels across"> -- This implements an image into the webpage.
  • <a href="mailto:youremail@email.com"></a> -- everything iside will be marked by an e-mail link going to the desired e-mail.
  • <p></p> -- tells the web page that everything inside is in the same paragraph.
  • <br> -- creates a line break (line space) between where you put the tag at.
  • <!--Your text Here--> -- this is a comment tag, these are not shown in the web browser.


_________________
PSN ID: I-Am-The-Aki or Punish3r_Flame
Spoiler:

Bully@WiiPlaza

Bully@WiiPlaza
 
 

Not bad. You should put code snippets (or tags) in code tags like this
Code:
<body></body>


_________________
HTML Tutorial Part 1 "The Beginning" YBjg74I

Shadow@BWH

Shadow@BWH
 
 

Not bad really. I said screw it and just did JavaScript. The class I'm in goes over CSS and HTML because it's jumbled with JavaScript.


_________________
HTML Tutorial Part 1 "The Beginning" BAjMdNS

I Am The Aki

I Am The Aki

Shadow@BWH wrote:Not bad really. I said screw it and just did JavaScript. The class I'm in goes over CSS and HTML because it's jumbled with JavaScript.  
Nice.


_________________
PSN ID: I-Am-The-Aki or Punish3r_Flame
Spoiler:

Bully@WiiPlaza

Bully@WiiPlaza
 
 

Shadow@BWH wrote:I said screw it and just did JavaScript.
You should also do the other two, lol. Neutral


_________________
HTML Tutorial Part 1 "The Beginning" YBjg74I

I Am The Aki

I Am The Aki

Bully@WiiPlaza wrote:Not bad. You should put code snippets (or tags) in code tags like this
Code:
<body></body>
I started part 2 right after and my internet cut out so I lost ALOT of typing so I said, fuck it maybe later


_________________
PSN ID: I-Am-The-Aki or Punish3r_Flame
Spoiler:

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum