Posts

Learning HTML - Day 2

Image
Today is the 26th January 2021 and it is my second day to learn HTML  🙋 Day 2 - Time 12.30 pm - 1:00 pm Day1      Day3      Day4      Day5      Day6      Day7      Day8       Day9   Day 1 - HTML structure, Header tags, Paragraph tags, Line break, Horizontal line break. Text Tags Code : <html>   <head>     <title>Title of the webpage</title>   </head>   <body>     <!---Using line break tag, horizontal break tag---!> <b>Bold Text</b> <i>Italic Text</b><br> <!---Bold Text and Italic text are in a single line, using line break and check again---!> <b>Bold Text</b><br> <i>Italic Text</i><br><hr> <!---Using horizontal line break tag---!> <u>Underlined text</u><br> <strike>Strike through text...

Learning HTML - Day 1

Image
HTML is something I hear often, hardly have any knowledge about its coding so have decided to learn about it at my own pace daily, will note whatever I learn in this blog so I can quickly check and refresh what I had learnt. Today is 25th January 2021 and it is my first day to learn HTML 🙋 Day 1 - Time 12:00 pm - 12.30 pm Day2     Day3     Day4     Day5     Day6     Day7     Day8        Day9        Important Concepts in this page - Header Tags, Paragraph Tags HTML is Hypertext Markup Language which is used for coding webpages. Types of HTML - There are different versions of HTML; these are HTML, HTML+, HTML 1.0, HTML 2.0, HTML 3.2, HTML 4.01 (it has accessibility of Cascading Style Sheet and Multimedia) and now HTML 5.0 Necessity of HTML -...