HTML

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 34

HTML

HTML (Hyper Text Markup Language)


.
HTML

.
HTML

.
HTML-,

.

.


, HTML

(heading), ,
, ,
,
.
HTML
<h1> </h1>,

,
<img>, <br/>.
,
.
,
,
- .

HTML
.
HTML

.


, , ,
.
HTML
JavaScript,
jQuery
HTML .

Cascading Style Sheets (CSS)

.

HTML ?
HTML
.

, HTML
.
. Html .htm (

) ,

.
HTML

.
? ()
() .

:
<h1> <p> </p> </h1>

:
<h1> <p> </h1> </p>
HTML

,

.
HTML

.

:
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<h2>My Second Heading</h2>
<p>My first paragraph.</p>
</body>
</html>
HTML?
HTML e .
HTML Hyper Text Markup Language
HTML
.
. markup (),
.

HTML

, : <html>.
: <b> </b>.
()
.

(pening tag) (closing tab).
HTML =
HTML .
HTML HTML
.
HTML .
( Internet Explorer
Firefox) HTML
.
HTML ,
:

<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<html> </html>
.
<body> </body>
.
<h1> </h1>
.
<p> </p>
.

HTML .
.
.
HTML

HTML ,
( Notepad Notepad++), ,

HTML FrontPage
Dereamwiever.
.HTM .HTML ?

HTML HTM.
,
,
.HTML.

, HTML
HTML
.
<p> This is a paragraph </p>
<a href="default.htm" > This is a link </a> <br />
<img src=slika.jpg" width="104" height="142" />

HTML
(start tag /opening tag)
(nd tag /closing tag).
E
.

HTML HTML
.
HTML :
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>

<p> e HTML
<p>
</p>.
: his is my first
paragraph.
<p>This is my first paragraph.</p>

<body>
() HTML
<body> </body>
<body> HTML <p>.
<body>
<p>This is my first paragraph.</p>
</body>

<html> e HTML
<html>
</html>.
<body> .
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>

,
HTML ,
:
1.
.
2. .
3. ,
.
4. .
test.html.
5. .
6.

HTML
:
<html>
<head>
<title> HTML </title>
</head>
<body>
html .
</body>
</html>

<head>

.
HTML <title>

.


<body> ( ).
RGB .
, , ,
.
<body bgcolor="&ffff00" text="&ffffff" link="&000080" vlink="&ffff00">

RGB .
<body bgcolor="&ffff00" text="&ffffff" link="&000080" vlink="&ffff00">

HTML
.
<body background="slika2.gif">

:


, .

(headings).

.
,
.

(
) (
).

<font face="ime na fontot" color="bojata na fontot" size="goleminata na font">


:
<html>
<body style="background-color:yellow">
<h2 style="background-color:red">This is a heading</h2>
<p style="background-color:green">This is a paragraph.</p>
</body>
</html>

, :
<html>
<body>
<h1 style="font-family:verdana">A heading</h1>
<p style="font-family:arial;color:red;fontsize:20px;">.</p>
</body>
</html>


:
<html>
<body>
<h1 style="text-align:center">This is a heading</h1>
<p>The heading above is aligned to the center of this
page.</p>
</body>
</html>





,
.


.
HTML ( ) ,
, ,

.
,
.

HTML
<a> .
:
,
href .
,
name .

HTML
HTML :
<a href="url">Link text</a>

href ,
<a> </a>
( ).
<a href=http://e-uciliste.gorginaumov.edu.mk"></a>
<a href=prva.html"> </a>

name
HTML
.
.
.

: HTML
<a name=linkovi></a><br

:
<a href=#linkovi> </a>


,
(,
),
.
HTML
<img> ( ,
-).
HTML
, ,
"slika1.jpg",
:
<img src=slika1.jpg width=200 height=150>
: .

,
src
.
src,
alt, .

, .
<img src="slika1.jpg" width="200" height="150 alt="">

,
Yahoo, (),
<img>
<a> </a>:
<a href=yahoo.com><img=yahoo.gif>Yahoo </a>

HTML
HTML
.
<ul>
(), <li> o.
:
Coffee
Milk

<ul>
<li>Coffee</li>
<li>Milk</li>

<!--unordered list-->
<!--list item-->

</ul>

<ol> ,
<li> .
:
1. Coffee
2. Milk

<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

<!--ordered list-->

,
.
<dl> , <dt> (
) <dd> (
).
:
<dl>
Coffee
<dt>Coffee</dt>
- black hot drink
<dd>- black hot drink</dd>
Milk
<dt>Milk</dt>
- white cold drink
<dd>- white cold drink</dd>
</dl>
<dl>
<dt> </dt>
<dd> </dd>
<dt> </dt>
<dd> </dd>
</dl>


,

(
,
, .).
<table> <tr>


<td>.
Bo (able Headers)
<th> .
, .

<html>
<head>
<body>
<table border="1" cellpadding="8" width="60%">
<tr bgcolor="#00ffff" align="center">
<th> 1</th>
<th> 2</th>
</tr>
<tr bgcolor="#00ff96" align="center">>
<td><a href=https://www.google.com>GOOGLE</a></td>
<td> 1, 2</td>
</tr bgcolor="#00ff96" align="center"> >
<tr>
<td bgcolor="#00b0ad"> 2, 1</td>
<td><ul><li>Pelister</li><li>Vardar</li></ul></td>
</tr>
</table>
</body>
</head>
</html>


,
.

You might also like