What's new

Closed Web development tutorial [html]

Status
Not open for further replies.

Kuro-chan

Honorary Poster
Joined
Dec 14, 2015
Posts
428
Reaction
115
Points
189
Di mo kailanga ng experience sa programming para matuto ka nito, need mo lang ng common sense, isip at tyaga.

So, okay. Bago tayo magstart ng Tutorial, kailangan natin ng text editor
Spoiler contents are visible only to Established Members.

Nasasainyo yon ung ano ba ang gagamitin nyo. Madaming pwede.


I'm using Sublime Text, pero kayo na bahala kung saan kayo komportable.

HTML is the standard markup language for creating Web pages.

  • HTML stands for Hyper Text Markup Language.
  • HTML describes the structure of Web pages usingYou do not have permission to view the full content of this post. Log in or register now.You do not have permission to view the full content of this post. Log in or register now.
  • HTML elements are the building blocks of HTML pages
  • HTML elements are represented by You do not have permission to view the full content of this post. Log in or register now.
    Spoiler contents are visible only to Established Members.
  • HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
  • Browsers do not display the HTML tags, but use them to render the content of the page
Ang mga tag ay pares-pares dapat. This is an opening tag:
HTML:
<tagname>

This is the closing tag naman:
HTML:
</tagname>

Nakita nyo yung backslash(/)? Yun yong pang close ng tag natin. Tho, minsan, di natin kailangan pang i-close yung some tags na idi-discuss ko din sa inyo later.

Ang HTML ay hindi case-sensitive, meaning kahit upper at lower case yan, magra-run pa din ang code natin.

take a look at this:

Code:
 <!DOCTYPE html>
<html>
   <head>
   <title>Web Development Tutorial</title>
   </head>
<body>
   <p>Hello, Phcorner</p>
</body>
</html>

Q: Para saan po ba ang <!doctype html>?
A: Ni-rerepresent po nito ang document type, and it helps browsers para magdisplay nang tama ang mga web pages
Q:Ano po ba ang <html>?
A: Ayan yung pinaka-root element ang isang HTML page
Q:e, ang <head>?
A: Dyan natin nilalagay yung mga metadata, mga aditonal data sa html file nyo.
Q: Yung <body> naman po?
A: Dyan ka magko-code ng contents ng html mo. From its word, 'body'.

How to save your work?
1. Ctrl + S (duh)
2. [any_filename].html
example: phcorner.html

Tapos double click nyo lang. nakadefault yan sa EI kaya gawin nyo nalang default ang chrome.

Feedback/suggestions/ negative comments?

Itutuloy, overview palang to mga bossing... Wala pang coding lol
 

Attachments

Last edited:
Pagpasesyahan nyo na mga sir, nasa office ako e. Sinisingit ko lang. Web Developer ako somewhere in Manila e
Pwede po parequest ng tut ng codeigniter framework sa susunod? TIA!!!

By the way, nice tutorial po. Tanong lang po bakit yung iba gumagamit pa ng self-closing tags?
 
Pwede po parequest ng tut ng codeigniter framework sa susunod? TIA!!!

By the way, nice tutorial po. Tanong lang po bakit yung iba gumagamit pa ng self-closing tags?

Itutuloy ko pa yan sir. Haha

Bali, ang self closing tag ay optional lang naman kung lagyan mo ng backslash(/) or wala.

<area />
<base />
<br />
<col />
<command />
<embed />
<hr />
<img />
<input />
<****** />
<link />
<meta />
<param />
<source />
<track />
<wbr />

Nakadepende din yan sa ni-declare mong doctype.

Punta ka dito sir: You do not have permission to view the full content of this post. Log in or register now.
 
Itutuloy ko pa yan sir. Haha

Bali, ang self closing tag ay optional lang naman kung lagyan mo ng backslash(/) or wala.

<area />
<base />
<br />
<col />
<command />
<embed />
<hr />
<img />
<input />
<****** />
<link />
<meta />
<param />
<source />
<track />
<wbr />

Nakadepende din yan sa ni-declare mong doctype.

Punta ka dito sir: You do not have permission to view the full content of this post. Log in or register now.
Ayun, salamat. Naguguluhan kasi ako kung kailangan ba siya o hindi.
 
sir wla pa po ako alam dyan .. peo ngaun pasukan mag weweb npo ako.. sana matulungan nyu po ako ..
lgi ko pong hahapin mga post nyu..
 
sana magtagal ang thread nato or hahaba, at laging updated para sa mga interesadong matuto,,,salamat sa thread..
 
Up... Gusto ko talaga matuto ng programming kaso grabe wala akung maintindihan.:) gustong kung matuto ..ang hirap pala intindihin pag di ka nag aral ng ganyan. Nice thread sir. Godbless u.
Up
 
Last edited by a moderator:
Status
Not open for further replies.

Similar threads

Back
Top