1 / 12

Hazırlayan: Yrys Moidin kyzy

Hazırlayan: Yrys Moidin kyzy. <html></html>. html; 1. html ( hypertext markup language ): hipermetin işaretleme dili. Bu tag wep sayfasında bulunan ilk tagdır . Dosya uzantısı . htm ya da .html olmalı.

isaura
Download Presentation

Hazırlayan: Yrys Moidin kyzy

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Hazırlayan: YrysMoidinkyzy

  2. <html></html> html; 1. html (hypertextmarkuplanguage ): hipermetin işaretleme dili. Bu tagwep sayfasında bulunan ilk tagdır. Dosya uzantısı .htm ya da .html olmalı. Wep sayfası içerisindeki bütün taglar <html></html> tagının içinde yazılır. <html> </html>

  3. <head></head> <head></head> bu tagın arasına yazılacak herhangi bir şey sayfada gözükmez. Tagın hiç parametresi yoktur. <html> <head> </head> </html>

  4. <title></title> <title></title> tagdakiyazı web sayfasının başlığını oluşturur. <html> <meta charset="utf-8"> <head> <title> sayfanın başlığı</title> </head> </html>

  5. <body></body> <body></body> bu tag web sayfasının görünen bütün yazılarının, resimlerinin, formlarının… içine yerleştirildiği tagdır. <html> <head> <title> sayfanın başlığı</title> </head> <body> </body> </html>

  6. <meta charset="utf-8"> Utf-8 metinde Türkçe karakterlerin yazılmasına izin verir. <html> <meta charset="utf-8"> <head> </head> <body> Türkçe karaktere çevirdik. </body> </html>

  7. Yazi tipi <b><i><u> Yazının yazı tipini belirler <html> <meta charset="utf-8"> <head> <title> sayfanın başlığı</title> </head> <body> <b> Yazı kalındır</b><br> <i>Yazı İtaliktir</i><br> <u>Yazı Altı Çizilidir</u><br> </body> </html>

  8. Bgcolor sitenin zemin rengini belirler <html> <meta charset="utf-8"> <head> <title> sayfanın başlığı</title> </head> <body bgcolor=green> Zemin rengi yeşildir </body> </html>

  9. <ul> <li><a href=http://www.</li></ul> bu tagbaşka sayfaya link vermek için kullanılır. <ul> <li><a href="http://www.anadolu.edu.tr" target=“_blank”>Anadolu Üniversitesi</a> </li></ul>

  10. Arama Motor İnternette arama yapmak için <html> <meta charset="utf-8"> <head> <title> Anadolu Üniversitesi</title> </head> <meta http-equiv="Keywords" content="anadolu";" anadolu üniversitesi";"üniversite";"eskişehir"> </html>

  11. Resim ekleme <img> <imgsrc="resim.png" > Bu tag yardımıyla web sitemize resim ekleyebiliriz

  12. <font size="2" face=«Yazı tipi"> </font> <html> <meta charset="utf-8"> <head> </head> <body> <font size="2" face="Calibri"> Yazı tipi Calibri. boyutu-5</font><br> <font size="2" face="BlackoakStd"> Yazı tipi Arial Black. boyutu-5</font> </body> </html>

More Related