*

Video e javës



   Google Buzz.


Diskutimet e fundit


*Ndegjoni Live: ayihRadio - OFF AIR


Pages: [1] 2  All |   Go Down
  Send this topic  |  Print  
Topic: Çka është HTML  (Read 13935 times)
« on: November 05, 2007, 07:53:09 PM »
be a part of ayihORG community.
daBaki. Online
Administrator
Hero Member

*****
Posts: 729




HTML eshte gjuha me dominante ne ndertim te ueb-it. Permban nje kuptim qe e shpjegon strukturen e text-based informacionin ne dokument, qe perbehet nga ca tekste specifike psh: headings, paragraphs, lists, dhe kshtu me radhe - dhe e avancon tekstin me sene interaktive siq jan : fotot, format e tabelave, dhe ca pjes tjera. HTML eshte i shkruar ne form te tiketave (qe njihen ne gjuhen angleze si TAGS),  dhe e rrethuar me kllapa "<..>". HTML po ashtu mundet mu bo n'disa menyra tjera ne dukjen e dokumentat/uebit, si psh. duke ja shtuar mbrenda gjuh tjera scriptuese t'cilat kan effect ne dukjen e webit.
« Last Edit: February 09, 2008, 03:24:07 PM by theDirector3 » Logged

I am what I am because of who we all are.
         
macbook //   
« Reply #1 on: November 17, 2007, 06:16:48 PM »
easy4bendi Offline
Global Moderator
Hero Member

*****
Posts: 918



Pakes shtes:
Për të krijuar nje HTML dokument na nevojiten që të kemi të instaluara këto programe:
-Shfletuesin (Browserin) per shfletimin e HTML dokumenteve (p.sh. Internet Explorer, Firefox, Netscape...)
-Tekst editorin më të thjesht për punimin e HTML dokumenteve (p.sh.Notepad, Por një ndër programet më të mira është. "Arachnophilia" te cilin mun ta gjeni leht në internet.

Ja një ushtrim i thjesht (basic)..
Hapim Notepad dhe shenojm:

<html>
<head>
<title>Ushtrimi i Parë</title>
</head>
<body>
<h1><center>AYIH<h1></center>
<p>HTML - Hyper Text Markup Language</p>
</body>
</html>

Shkojm te File>Save As..>edhe te File name e shkruajm p.sh Ushtrimi i pare/por duhet te kemi kujdes, duhet ta shtojm shtesen .html

dmth kja duket kshtu /  Ushtrimi i Pare.html
edhe e ruani p.sh ne Desktop..e hapni dhe e shihni rezultatin  Grin

me shpres qe ka qen Useful  Wink
Logged

""After Perl everything else is just assembly language.""
« Reply #2 on: November 23, 2007, 02:32:23 PM »
be a part of ayihORG community.
daBaki. Online
Administrator
Hero Member

*****
Posts: 729



kto code-t qe po i shifni ne postin e easy4bendi quhen tags :
psh:

<html> e deklaron gjuhen e webit
<head> Fillon nje lloj Codi, por i cili nuk eshte i shikuar ne browser, zakonisht scriptat extra shtohen mbrenda ketu.
</head> mbyllja
<body> fillon codi ku qka do qe shkruajm ketu paraqitet ne browser per vizitort
</body> e mbyllin codin qe do te shiqohet prej vizitorve.
</html> me kete komand behet mbyllja e codit.

<html> hapet
</html> me "/" mbyllet.
Logged

I am what I am because of who we all are.
         
macbook //   
« Reply #3 on: February 07, 2008, 08:47:28 PM »
logic Offline
respected member
Full Member

***
Posts: 227



What's up bro's...
Une sa po e kam mesuar HTML, dhe ndihem te madhe shum me ka jap Dreamweaver...Wink
Code:
HTML Basic Document
<html>
<head>
<title>Document name goes here</title>
</head>
<body>
Visible text goes here
</body>
</html>
Heading Elements
<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>
Text Elements
<p>This is a paragraph</p>
<br> (line break)
<hr> (horizontal rule)
<pre>This text is preformatted</pre>
Logical Styles
<em>This text is emphasized</em>
<strong>This text is strong</strong>
<code>This is some computer code</code>
Physical Styles
<b>This text is bold</b>
<i>This text is italic</i>
Links, Anchors, and Image Elements
<a href="http://www.example.com/">This is a Link</a>
<a href="http://www.example.com/"><img src="URL" alt="Alternate Text"></a>
<a href="mailto:webmaster@example.com">Send e-mail</a>
A named anchor:
<a name="tips">Useful Tips Section</a>
<a href="#tips">Jump to the Useful Tips Section</a>
Unordered list
<ul>
<li>First item</li>
<li>Next item</li>
</ul>
Ordered list
<ol>
<li>First item</li>
<li>Next item</li>
</ol>
Definition list
<dl>
<dt>First term</dt>
<dd>Definition</dd>
<dt>Next term</dt>
<dd>Definition</dd>
</dl>
Tables
<table border="1">
<tr>
<th>someheader</th>
<th>someheader</th>
</tr>
<tr>
<td>sometext</td>
<td>sometext</td>
</tr>
</table>
Frames
<frameset cols="25%,75%">
  <frame src="page1.htm">
  <frame src="page2.htm">
</frameset>
Forms
<form action="http://www.example.com/test.asp" method="post/get">
<input type="text" name="lastname" value="Nixon" size="30" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit">
<input type="reset">
<input type="hidden">

<select>
<option>Apples
<option selected>Bananas
<option>Cherries
</select>
<textarea name="Comment" rows="60" cols="20"></textarea>

</form>
Entities
&lt; is the same as <
&gt; is the same as >
&#169; is the same as ©
Other Elements
<!-- This is a comment -->
<blockquote>
Text quoted from some source.
</blockquote>
<address>
Address 1<br>
Address 2<br>
City<br>
</address>
Logged

« Reply #4 on: February 07, 2008, 09:31:36 PM »
daFührer
qendrimi^ Offline
mnmlcus.
special members
Sr. Member

*****
Posts: 418



logic ma nigga feel free to share DIJENIN (t'art) qe e ki

n-joy
Logged

Minimall // Mediumall // Maximall
« Reply #5 on: February 07, 2008, 10:29:02 PM »
VIVA IL CINEMA.™
theDirector3 Online
Administrator
Hero Member

*****
Posts: 919



logic; a e ke msu ashtu from scratch, qe dite me kodu me dore me Notepad per-shembull

apo me bo sene vec permes Dreamweaverit (me interface/program)?

What's up bro's...
Une sa po e kam mesuar HTML, dhe ndihem te madhe shum me ka jap Dreamweaver...Wink
Logged

« Reply #6 on: February 09, 2008, 07:59:53 AM »
logic Offline
respected member
Full Member

***
Posts: 227



logic; a e ke msu ashtu from scratch, qe dite me kodu me dore me Notepad per-shembull

apo me bo sene vec permes Dreamweaverit (me interface/program)?

Bro,
Po ne notepad ka filluar ta mesoj krejt me dor, por kishte shume tags...e ma propozuan Dreamweaver sdi a din aty kur po e prekshe ctrl+space po te ipte pak ndihme per tags...me kupton;)
D.m.th. ne notepad por po shkruaj tash ne dreamweaver se aty ate qka po e shkruj po e shoh njekohesisht
SPLIT=CODE & Desing Cheesy
« Last Edit: February 09, 2008, 08:01:28 AM by logic » Logged

« Reply #7 on: February 09, 2008, 03:22:58 PM »
VIVA IL CINEMA.™
theDirector3 Online
Administrator
Hero Member

*****
Posts: 919



yes, bro.
Logged

« Reply #8 on: January 04, 2009, 11:39:02 PM »
wWw.AlbWzone.coM
searcH Offline
Hero Member

*****
Posts: 1190



edhe pakk shtess...


Ç'eshte HTML dhe konceptet baze te saj
HTML
Hyper Text Mark-up Language; ky eshte emri i vendosur gjuhes, e cila perdoret per krijimin e dokumentave Web, ne menyre te tille qe Web Browsers(Netscape, Internet Explorer, etj.) te dine si ta shfaqin ate. HTML eshte nje gjuhe e thjeshte me etiketa(tags) dhe rregulla te thjeshta, jo nje gjuhe e mirefillte programimi.
Njihen keto versione: HTML 1.0, 2.0, 3.0, 3.2, 4.0,....
Perfundim: HTML file(dokument) = Web Page

HTTP (Hyper Tekst Transport Protocol)
Protokoll i cili percakton menyren e komunikimit midis WWW klientit dhe serverit.

Web Browser
Nje software qe lejon perdoruesit e Intenetit te hyjne(access) ne World Wide Web (WWW). P.sh. si: Netscape, Internet
Explorer, Mosaic, Lynx.

URL (Universal Resource Locator)
Adresa e nje web page, si p.sh. "www.soros.al" ose "www.miami.edu".

Link
Nje tekst ose imazh i perdorur per te lidhur nje "faqe" tek nje tjeter faqe ose nje tjeter site.

Image
Nje skedar i tipit pikture apo artwork.

Tag
Nje etikete (te cilat jane te ndryshme sipas funksionit qe kane).
Tag-et jane elementet kryesore te HTML-se, pasi ato i tregojne web browsers si ju doni te duket dokumenti juaj ne Web. Nje tag eshte gjithcka qe ndodhet midis simboleve "me e vogel" (<) dhe "me e madhe" (>) si: <HTML> eshte "HTML tag", <BODY> eshte "Body tag", etj.
Tag-et jane "case insensitive", pra nuk ka dallim midis shkronjave te vogla apo te medha p.sh.: <H1> ose <h1>

Attribute
Perdoren me tag-et per te specifikur karakteristika apo veti te vecanta sipas rasti konkret.
Nje atribut vendosetbrenda shenjes se tag, pas emrit te tag-ut dhe para shenjes "me e madhe" (>).
Atributeve zakonisht u jepen vlera sipas rasti, p.sh.: <FONT color="green">. Mbani mend se vlerat e dhena zakonisht vendosen midis "thonjezave ".
Atributet mund te jene "case sensitive" p.sh. kur si atribut eshte emri i nje skedari.
Logged

wWw.albWzone.coM

|||| Movies |||||||| Music |||||||| Appz |||||||| E-Books |||||||| Games ||||  Filma Te perkthyer ne shqip ||| etcc... |||
« Reply #9 on: January 05, 2009, 08:43:23 AM »
albanianwizard Offline
respected member
Jr. Member

***
Posts: 91



E vertet qe dreamweaver eshte nje ndihmes goxha e madhe per ne, por nuk rekomandohet absolutisht per fillestaret sepse do vij koha qe do harrojn se si vendoeset nje <a href="...   dhe nuk eshte gje e bukur lol.
Pra ne fillim te gjith duhet ta filloj me notepad.
Logged

http://albanianwizard.org
(Blogu i studenteve shqiptare)
 
Tags: HTML web 
Pages: [1] 2  All |   Go Up
  Send this topic  |  Print  
 
Jump to:  

SEKSIONE   Blogu  |  Galeria  |  Tage

Na kontaktoni | Tregoja mikut | Ndihme | Kerko forumet

English Information | FAQ


Powered by SMF | SMF © 2006-2009, Simple Machines LLC

graphics by MakeItSimple Studios. ©2009 ayih Organization. All rights reserved.
Prishtina Prishtina Info