Hyper Text Markup Language
Markup Language : structure and presentation of raw text.
HTML is structure and layout of a web page.
HTML is developed by Tim Berners Lee.
The <head> element contains meta data about the page (SEO için lazım bilgiler burada)
opening(içine yazılana attribute denir) ve closing tag ler arasına html elementi yazılır, genel mantık.
W3C : World Wide Web Consortium html standartlarını belirler.
head ve body ler bir kere açılır ve kapanır
<head> kısmında title, meta, script, style, link, base var.
<body> text, lists, tables, images, links var.(nested yapılar)
<p>buraya content denir</p>
<br>bir satır alta
html yazıp tab basınca tamamlıyor(tüm kodlarda). Emmet cheat sheet is very useful.
HTML case sensitive değildir.
Seçtikten sonra ctrl+ö yorum satırı yapar.
We can use comments for searching errors.
<b> bold
<strong>seems like bold but when a search engine analyses a web page text in strong tags is considered important.
<i> italic
<em> seems like italic but there is a stress on the word.
We can span two or more columns by using the colspan attribute.
We can span two or more rows by using the rowspan attribute.
Ordered lists attributes : reversed : ters sıralar, start : kaçtan başlasın, type : ne ile başlasın
Unordered lists attributes : type=circle, type=disc
ul>li*5 unordered list yapısında 5 tane listeleme alanı açar veya ul den sonra alta inip sadece li*5 de olur.
mark> emmet böyle yazınca çıkıyor.
Inline styling external styling den önce gelir. Yani html ile attribute(opening tag içi) kısmında görsel düzenleme kodu yazarsan sonra CSS ile yapacağın(external) kodu uygulamaz.
id ve class case sensitive dir. id unique dir, multiple styling için class kullanırız.
head styling de (id olunca #)#head şeklinde, paragraf styling de (class olunca .).paragraf şeklinde yazıyoruz.
tüm satırı kaplayana block element denir, yazmış olduğumuz kadarsa inline elementtir. yazdığımız tagler i yanyana yazıyorsa inline elementtir.
<div> block styling için kullanılan container dır.
closing tag i olmayanlara empty tag denir.
../../ şeklinde geri kaynağa gidebiliriz.
css tarafında kullanılması daha uygun olan komutu html kırmızı veya bir uyarı rengiyle hatırlatıyor, ama kod çalışıyor.
açamadığı dosyayı indirir. rar vs.
linkleme <a> ile yapılır.
href= “#” bu yazım bulunduğun sayfada kal demektir.