From bc008bdfeb99bc6ec74ec30de310c8711d26bfbd Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Mon, 10 Dec 2018 09:16:24 +0000 Subject: [PATCH] Remove tmp file --- computer-science-blog/pages/html.html~ | 35 -------------------------- 1 file changed, 35 deletions(-) delete mode 100644 computer-science-blog/pages/html.html~ diff --git a/computer-science-blog/pages/html.html~ b/computer-science-blog/pages/html.html~ deleted file mode 100644 index 70bbc4e..0000000 --- a/computer-science-blog/pages/html.html~ +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - -

HTML

-

- Hypertext Markup Language is the standard language used by browsers to display webpages. - HTML was invented by Tim Berners-Lee in 1990, and uses tags. This means that in order to define - an element (something like a heading or paragraph), you use a tag - such as <p>, - which displays a simple paragraph. Most tags must be closed with closing tags - like </p>, - however some elements, like those for images (<img>) and linking external resources - (<link>) are auto closing: they don’t need a closing tag. For example, an image is defined as follows: -
- <img src="image_source_url"> -
- HTML is closely linked with CSS and JavaScript; a comment in HTML is started with - <!-- and ended with -->. -

- -