<html> <head> <title>Мәсәлән</title> </head> <body> <H1>Саләм !</H1> <P> Менә бу гади мисал HTML документы </P> </body> </html> |
Саләм !Менә бу гади мисал HTML документы |
<html> <head> <title>Документның исеме</title> </head> </html> |
Документта күрмибез
|
<html> <body background="fon_green.gif" bgcolor="#202020" text="red" link="#ff0000" vlink="#505050" marginheight="30" topmargin="30" leftmargin="40" marginwidth="40"> ... Теләсә нинди текстлар, рәсемнәр һ.б. ... </body> </html> |
Карагыз монда |
<html> <head> <!-- Шушы адресы браузерга өчен нигез була. --> <base href="http://www.geocities.com/yawz_han/index.html"> <title>Татар порталы</title> </head> </html> |
Документта күрмибез
|
<html> <head> <!-- META-инструксыяның беренче груһны. --> <meta http-equiv="Refresh" content="5; url=../main_h.html"> <meta http-equiv="Expires" content="Sat, 26 Jun 1999 17:38:15 GMT"> <meta http-equiv="Content-type" content="text/html; charset=windows-1251"> <!-- META-инструксыяның икенче груһны. --> <meta name="Generator" content="Greenback"> <meta name="publisher-email" content="yawz_han@yahoo.com"> <meta name="publisher-URL" content="Minem jort - http://www.watan.narod.ru"> <meta name="keywords" content="poems, stories, dictionaries, news"> <meta name="description" content="Personal site"> <title>META-инструксыяның мисаллары</title> </head> </html> |
Карагыз монда |
<script language="JavaScript" src="http://watan.narod.ru/scripts/misal.js"> </script> |
Скриптның эше |
<script language="JavaScript"> <noscript>Скриптның ярдәме кабыз.</noscript> <!-- window.location="http://watan.narod.ru"; --> </script> |
Скриптның эше |
<html> <head> <title>Мәсәлән</title> </head> <frameset cols="265, *"> <frameset rows="165, *"> <frame src="topmenu.html" name="menu1"> <frame src="botmenu.html" name="menu2"> </frameset> <frame src="mainpage.html" name="page"> <noframes> Синеке браузер Фреймлар күрсәтми икән </noframes> </frameset> </html> |
topmenu.html | mainpage.html |
---|---|---|
botmenu.html |
<html> <head> <title>Мәсәлән</title> <style type="text/css" title="Cool table"> body {color : white} p {color :blue; font-size :12pt; font-family :Arial} h1 {color :red; font-size :18pt} </style> </head> <body> <h1>Бу шрифт 18pt </h1> <h1 style="font-size: 36pt">Бу шрифт 36pt</h1> <p>Бу текст зәңгәр һәм 12pt Arial шрифт белән ясаган</p> </body> </html> |
Бу шрифт 18ptБу шрифт 36ptБу текст зәңгәр һәм 12pt Arial шрифт белән ясаган |