Posts

Showing posts from June, 2022

HTML-Fundamental

Image
HTML - Hyper text markup label HTML - Hyper text markup label 1.1 Introduction 1. W3C - World Wide Web consortium Structured standard languages (HTML, XML) Presentation Standard Language (CSS) Behavioral Standards (DOM, ECMScript) 2.1 HTML fundamental 2.1.1 Label Block element: no matter how much content, it will occupy one line e.g., p label , h1-h6 label Inline element: content expands in one line e.g., a label , strong , em Index1.0 - basic label: titile-h, paragraph-p, special symbol-&lt ​ x <!--DOCTYPE: tell the browser what specification we want to use--> <!DOCTYPE html> < html lang = "en" > <!--head: web head--> < head > <!--meta: descriptive label, describe information of web, e.g., keywords, charset--> <!--meta generally used for SEO-->     < meta charset = "UTF-8" >     < meta name = "keywords" content = "Web development" >     < meta name = "descript...