-

  • Html (52)
  • (0)
  • Flash (0)
  • (37)
  •     (7)
  •     (4)
  •     (2)
  •     (1)
  •     (3)
  •     (12)
  •     (7)
  •     (4)
  • (8)
  • - (1)
  • (1)
  • (8)
  • (6)
  • (1)
  • (8)
  • (8)
  • , (5)
  • (21)
  • (1)
  • (3)
  • , (5)
  • (5)
  • (58)
  • (4)
  • (81)
  • (9)
  • - (32)
  • (2)
  • (11)
  • (1)
  • (2)
  • (13)
  • (4)
  • (79)
  •     (32)
  •     (6)
  •     (6)
  • (0)
  • . (2)
  • (0)
  • (10)
  • (21)
  • (0)
  • (2)
  • (9)
  • - (0)
  • (5)
  • (10)
  • (17)

 -

: 465 : 0
.
: 240060 : 0
Uma Mohan -
: 10588 : 0
(- )
: 25866 : 0

 -

 -

 - e-mail

 

 -

.. ..

 -

 LiveInternet.ru:
: 16.01.2012
:
:
: 440

:

(0)

, 07 2012 . 12:46 +



 

 


Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

50-.

, 07 2012 . 12:12 +

.

50-.

- . , . , , , . - .

:

 

     
...


:

?






:


?


-:




, . , .

? , :

     
<form name="anketa" method="post" action="http://mysite.ru/script">
</form>


Name - , . Method - . Action - , , - . .. , , , , , .

? ( -):

     
<form name="anketa" method="post" action="http://mysite.ru/script">

<b>...</b><br>
<input type=text name="fio" size=37 maxlength=100><br><br>

<b> -:</b><br>
<input type=text name="email" size=37 maxlength=80 value="@">

</form>


Type=text - , . Name - . Size - . Maxlength - , . Value - ( - = @, , , ).

:

     
...


-:


, .

? :

     
<form name="anketa" method="post" action="http://mysite.ru/script">

<b>...</b><br>
<input type=text name="fio" size=37 maxlength=100><br><br>

<b> -:</b><br>
<input type=text name="email" size=37 maxlength=80 value="@"><br><br>

<input type=submit value=" "><input type=reset value="">

</form>


Type - , , . Value - .

     
...


-:




. , .

"":

     
:


, . .. : - . - , - , .

, :

     
<b>:</b>
<input type=radio name="sex" value="man">
<input type=radio name="sex" value="woman">
<br><br>


, "" <INPUT>, type radio (type=radio). Name - , "" , .. ( , ), value () - .

, "":

     
?






. "". "" - . .. , (, , ). "" , , - ( - ).

:

     
<b> ?</b><br>
<input type=checkbox name="fiction" value="yes"> <br>
<input type=checkbox name="thriller" value="yes"> <br>
<input type=checkbox name="adventure" value="yes"> <br>
<input type=checkbox name="melodrama" value="yes"> <br>
<input type=checkbox name="documentary" value="yes">
<br><br>


, , <INPUT>, type checkbox (type=checkbox). Name - , "" , , (value) - "" .

, - , "" "" checked:

     
<b> ?</b><br>
<input type=checkbox name="fiction" value="yes"> <br>
<input type=checkbox name="thriller" value="yes"> <br>
<input type=checkbox name="adventure" value="yes" checked> <br>
<input type=checkbox name="melodrama" value="yes"> <br>
<input type=checkbox name="documentary" value="yes">
<br><br>


, , "":

     
?






, .

"" "", :

     
?


, , - . -, - - .



     
<b> ?</b><br>
<select name="country">

<option value="france">
<option value="USA">
<option value="england">
<option value="italy">
<option value="australia">

</select>
<br><br>


, <SELECT></SELECT>. <OPTION>. Name - <SELECT>, . Value - <OPTION> ( ).

- , , . , selected <OPTION> :

     
<b> ?</b><br>
<select name="country">

<option value="france">
<option value="USA">
<option value="england">
<option value="italy" selected>
<option value="australia">

</select>
<br><br>


:

     
?


, , <OPTGROUP></OPTGROUP>:

     
<b> ?</b><br>
<select name="country">

<OPTGROUP label="">
<option value="italy">
<option value="france">
</OPTGROUP>

<OPTGROUP label="">
<option value="USA">
<option value="england">
<option value="australia">
</OPTGROUP>

</select>
<br><br>


( ):

     
?


. :

     
:


. , , , , , :

     
<b> :</b><br>
<select name="actor">

<option value="gorez">
<option value="rembo">
<option value="cowboy">
<option value="crybobby">
<option value="history">

</select>
<br><br>


, , size <SELECT>, :

     
<b> :</b><br>
<select name="actor" size="4">

<option value="gorez">
<option value="rembo">
<option value="cowboy">
<option value="crybobby">
<option value="history">

</select>
<br><br>


, :)

size , . Size=4 - .

, , , , , , .


 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

49-.

, 07 2012 . 12:10 +

.

49-.

, , .

. . , , , , .

, , , , , . , , , , , .

:

 

( ), . , , . :

 

     
<form name="web" method="get" action="http://www.yandex.ru:8081/yandsearch">
<input type=text name="text" size=18 value="" maxlength=80>
<input type=submit value="">
<input type=hidden name="serverurl" value="http://narod.ru">
<input type=hidden name="server_name" value=" ">
</form>


, , , , , , . :

     
<form name="web" method="get" action="http://www.yandex.ru:8081/yandsearch">
</form>


, , <FORM>. , . , .

<FORM>, : action - , action=http://www.yandex.ru:8081/yandsearch - , , - http://www.yandex.ru:8081/yandsearch.

Name - , . - web, , .

Method - . , GET. GET POST . , method, .

:

     
<form name="web" method="get" action="http://www.yandex.ru:8081/yandsearch">
<input type=text name="text" size=18 value="" maxlength=80>
</form>


, type=text, . , : name - (), size - ( ), value - - , - value, , value=" ", maxlength - , .

, . , :

     
<form name="web" method="get" action="http://www.yandex.ru:8081/yandsearch">
<input type=text name="text" size=18 value="" maxlength=80>
<input type=submit value="">
</form>


, : type=submit - , , , . Value - .

! ! :) :

     
<form name="web" method="get" action="http://www.yandex.ru:8081/yandsearch">
<input type=text name="text" size=18 value="" maxlength=80>
<input type=submit value="">
<input type=hidden name="serverurl" value="http://narod.ru">
</form>


. , . <INPUT>, - . Name - , , . Value - , type - . , hidden, ( ), . , , http://narod.ru. , .

. :

     
<form name="web" method="get" action="http://www.yandex.ru:8081/yandsearch">
<input type=text name="text" size=18 value="" maxlength=80>
<input type=submit value="">
<input type=hidden name="serverurl" value="http://narod.ru">
<input type=hidden name="server_name" value="ETO_NAROD">
</form>


, . , ( ).

, . , , . method <FORM>.

, method , . method GET POST.

method=get, , action + (value) URL, . URL:

     
action?name=value&name=value&name=value.


, , : action = http://www.yandex.ru:8081/yandsearch. - , , , "HTML", . , URL, :

     
http://www.yandex.ru:8081/yandsearch?text=HTML&serverurl=http://narod.ru&server_name=ETO_NAROD


.., URL (http://www.yandex.ru:8081/yandsearch) + "".

POST, ( ) .

, , . , , , .


 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

48-.

, 07 2012 . 12:09 +

.

48-.

, : , , , ( ). , .

: 1 - , 2 - . :



: (), (), .

, (, ) , , . , , , , -, , :

 

     
<form action="mailto:vasya@mail.ru">
</form>

 


. <INPUT>. .

, , , .

     
<form action="mailto:vasya@mail.ru">
<input type=text name=firstname>
</form>

 


, <INPUT>, , . - type, text. Type=text - . :

     


Name - , .

type name, , ( ) value - , size - ( , = 20), maxlength - , .

     
<form action="mailto:vasya@mail.ru">
<input type=text name=firstname value=" " size="40" maxlength="20">
</form>

 


:

     


, , .. size="40". 20- (maxlength="20"), value , . - value , , , .

: , .

     




<TEXTAREA></TEXTAREA>. <TEXTAREA> - :

     
<form action="mailto:vasya@mail.ru">
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>
<textarea name="comments"></textarea>
</form>

 


: name - , , ( ). , <br>. , . , . - , . ( ):

     
<form action="mailto:vasya@mail.ru">

:<br>
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>

:<br>
<textarea name="comments"></textarea>

</form>

 


, :

     
:


:


, <TEXTAREA> . ? (rows = ), (cols = ), , (<TEXTAREA> </TEXTAREA> ).

     
<form action="mailto:vasya@mail.ru">

:<br>
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>

:<br>
<textarea rows=7 cols=40 name="comments"> </textarea>

</form>

 


:

     
:


:


, , , , :)

: . , . - - . , - , , , . - .

, ( - ) <INPUT> type.

     
<form action="mailto:vasya@mail.ru">

:<br>
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>

:<br>
<textarea rows=7 cols=40 name="comments"> </textarea><br><br>

<input type=submit>

</form>

 


:

     
:


:




, name , .

. type submit, reset:

     
<form action="mailto:vasya@mail.ru">

:<br>
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>

:<br>
<textarea rows=7 cols=40 name="comments"> </textarea><br><br>

<input type=submit> <input type=reset>

</form>

 


:

     
:


:




value:

     
<form action="mailto:vasya@mail.ru">

:<br>
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>

:<br>
<textarea rows=7 cols=40 name="comments"> </textarea><br><br>

<input type=submit value=""> <input type=reset value="">

</form>

 


:

     
:


:




: , , .., , . : CSS. . CSS - HTML , , , CSS , , :)

" ", , , ? , . , :

     
<form action="mailto:vasya@mail.ru" method=post>

:<br>
<input type=text name=firstname value=" " size="40" maxlength="20"><br><br>

:<br>
<textarea rows=7 cols=40 name="comments"> </textarea><br><br>

<input type=submit value=""> <input type=reset value="">

</form>

 


Method - ( ). : get post. method , , . method=post, , , , (), -.

 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

47-.

, 07 2012 . 12:07 +

.

47-.

. , , - . :



, :)

, html - . , : , html, , , - .

- . html , , , , .. , - , , .

. , html.

<form></form>:

 

     
<form>
</form>

 


- ( , , ):

     
<form action="http://www.mysite.ru/cgi-bin/guestbook/">
</form>

 


- ( -):

     
<form action="mailto:vasya@mail.ru">
</form>

 


, .


 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

46-.

, 07 2012 . 12:06 +

, , .

46-.

, (html) ( - , , ..), (CSS), - - , , , .

- , , . CSS, html, , . () ( , , "-" .), ( , , , , ..).

, , , , . html-.

, CSS html- SCRIPT:

 

     
<html>
<head>
<title> </title>
</head>
<body>

<script type="text/javascript">
... ...
</script>

</body>
</html>


type ( , , Javascript).

, , . , , src:

 



     
<html>
<head>
<title> </title>
<script type="text/javascript" src="http://site.ru/put_k_sciptu/"></script>
</head>
<body>

<script type="text/javascript">
... ...
</script>

</body>
</html>


, , , html- . , , . , (.. html-).

, html-, , .

 



     
<html>
<head>
<title> </title>
</head>
<body>

<a name="ist"></a>
<a href="ist2.html#ist" onclick='open("big.html", "displayWindow1", "width=780, height=540, status=no, toolbar=no, menubar=no");'><img src="small.gif"></a>

</body>
</html>


, , , , , .

<A> onclick - , ( , ) - - , , , , .

onclick , HTML. . html - :)
 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

45-.

, 07 2012 . 12:05 +

, , .

45-.

CSS , , , , , , CSS:

 

     
<head>
<link href="special.css" rel="stylesheet" type="text/css">
</head>


, – . <link>, <head></head>, <body>, .

<link>:

1 – href=”http://…”
2 - rel="stylesheet" – , , . . rel HTML.
3 - type="text/css" – , , , CSS.

, <link> – , . ( ) .

, ( special.css) , ( special.css):

 



     
P.special {
color : red;
}


, , , , (<p></p> ), , , .

 



     
<html>
<head>
<title> CSS</title>
<link href="special.css" rel="stylesheet" type="text/css">
</head>
<body>

<p class="special"> .</p>
<p> , class.</p>

</body>
</html>


, class <p> . , ( special.css), , () <p>, special. .

, <style>, (<style> </style> ):

 



     
<html>
<head>
<title> CSS</title>

<style type="text/css">
P.special {
color : red;
}
</style>

</head>
<body>

<p class="special"> .</p>
<p> , class.</p>

</body>
</html>


, <style>, <link>, <head></head>, <body>.

CSS , ( ) style CSS - :

 



     
<html>
<head>
<title> CSS</title>
</head>
<body>

<p style="color: red"> .</p>
<p> , .</p>

</body>
</html>


color: red – , , style, , style , , .

HTML-. , , . , , CSS, , .


 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

44-.

, 07 2012 . 12:04 +

, , .

44-.

. , , , , flash – , . , , – (CSS - Cascading Style Sheets), , .

, – CSS HTML . HTML, CSS – , HTML. – HTML, . – , CSS , , . , , , , , .

CSS HTML-, , , – . , , CSS.

, , , , , . , , , , , , , , – . , CSS.

CSS:

 

  • HTML (, , color FONT, , , , , , , , , ).
  • - ( , , , , , , ).
  • (, )

, CSS , , , , CSS, , . , HTML, , , , - , HTML.

, CSS, , , CSS , .

 

Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

43-.

, 07 2012 . 12:03 +

, , .

43-.
, , , flash- <object>, <embed>. , :

<embed> HTML ( , ), , , , , , <object>, . , , , , :

 

     
<embed src="music.mid" width="50" height="20" autostart="false" loop="true" play_loop="5" hidden="false">
</embed>


1 - src="music.mid" – ( , *.mid *.wav)
2 - width="50" height="20" - (width) (heigth)
3 - autostart="false" - (false - , true - )
4 - loop="true" - (false - , true - )
5 - play_loop="5" - , ( 5 - )
6 - hidden="false" - (false - , true - )

, , , , , , , .

<embed>, , .. . : src ( ), align (), width (), height (), hspace ( ), vspace ( ).

:

- pluginspage=”http://…” ( , plug-in – , - , , , flash- , , , , flash-, ).
- hidden=”true” (false) - (/)
- type=” image/jpeg” –

( , ) flash- :

 



     
<embed src="mult.swf" pluginspage="http://www.macromedia.com/shockwave/download/index...d_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="200" height="300">
</embed>


:)

, , , , <object> <embed>, , ? : http://flash-ripper.com/articles/.

, , , . , , , , , : , , , , , , , , , , . , , -, , , , , , () , . , – , , , , , .

, , , : , . , , :)

 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  
(0)

42-.

, 07 2012 . 12:02 +

, , .

42-.

, html , . - , , , , , . : , html. ? html , html- , html- (CSS, Javascript ..), . .

, , . Html . . – , – (html).

, , , . <img>, , . .. <img> . , . <img> , (, ) (html).

, , , . , , flash-, , .

, , ? , <iframe>.

, , ? <object>, , , , HTML, , , <object>, , :), .

, <img>. :

 

     
<img src="sobaka.jpg" alt=" ">


– src - , , <img>, alt – , , , .

<object>, .

 



     
<object data="sobaka.jpg" type="image/jpeg">

</object>


, .

data , , . type , data, .. , image – , , jpeg – (). , <object></object>, , – .

, ( , - )? , , :

 



     
<object data="film.mpeg" type="application/mpeg">

</object>


, . <object> . : , , () , , , , , , .. , <object>, , , , <object> ( HTML), <object> . , .


 
Html
1 - " , ". 2 - " ?". 3 - " . , ?" / Html / Html Html - . . 1 - " , ". 2 - " ?". 3 - " . , ?" . 4 - " . ". 5 - " . ". 6 - " DIV. ". 7 - " ". 8 - ", , ". 9 - " . ". 10 - " ? ". 11 - " . , , ..". 12 - " ". 13 - " ". 14 - " -. ". 15 - " ". 16 - " , . ". 17 - ". ". 18 - ". 2". 19 - ". 3". 20 - ". ". . 21 - " ". 22 - " " . 23 - ", (valign)". 24 - ", (rowspan, colspan)". 24-2 - " . ". 25 - ", cellspacing cellpadding. ". 26 - " ". 27 - " , ". 28 - " ". . 29 - ", ". 30 - " . ". 31 - " () , topmargin, leftmargin, marginwidth, marginheight". 32 - " . ". 33 - " . : ". 34 - "C , ". . 35 - ". () ." 36 - " ". 37 - " " . 38 - " " . 39 - " , , ". 40 - " , ". 41 - " . IFrame". , , . 42 - " . OBJECT". 43 - " EMBED. OBJECT EMBED". 44 - " (CSS - Cascading Style Sheets)". 45 - " (CSS) ". 46 - " . html-". . 47 - ". ". 48 - " . ". 49 - " . ". 50 - " . ".

:  

 : [3] 2 1