28.01.26.md (691B)
1 # 28/01/26 2 3 - apparently i have to be kind... >:((( 4 - HTML is based on SGML 5 - browser wars between Netscape and IE 6 - URL stands for uniform resource locator 7 - URLs meet the following spec (for this module) 8 - {protocol}://dnsaddr[:port]/[resource] 9 - `<!DOCTYPE html>` must be at the top of every page 10 - `<html>` should be used to hold the whole document 11 - `<head>` should be used as well 12 - `<body>` should be used as well 13 14 ## common tags 15 16 - `<hN>` heading 17 - `<p>` paragraph 18 - `<br/>` break/make gap 19 - `<hr/>` horizontal rule 20 - `<a>` hyperlink 21 22 23 ## the `a` tag 24 25 - `<a href="http://google.com>google</a>` 26 - the links is specified with href, and the name (blue thing on page) is in the tag