I got glued to reading this post. It is a perfect summary my personal experience in transitioning from a soil scientist to software engineer. I'm happy you gave your all and the fact that it eventually paid off
@pleasantvik
Frontend ReactJs ,
Nothing here yet.
Nothing here yet.
I got glued to reading this post. It is a perfect summary my personal experience in transitioning from a soil scientist to software engineer. I'm happy you gave your all and the fact that it eventually paid off
#Introduction to web development ##The Language of the Web The language of the web can be broken down into three part of speech mainly noun(HTML), adjective (CSS), and verb(JavaScript) The HTML refer to the content of the page, it includes all the text, images, links, forms, table etc Css on the other hand, gives description to the content on the webpage. a text can be blue in color, with font-size of 16px. While JavaScript helps in performing the various actions on the webpage. The clicking of a button to make a request, the functions that is put together to make a calculator application works well are all done with the help of JavaScript What is HTML? HTML stands for Hypertext Markup Language. Though not a programming language, yet it's very important in web development. HTML tells the WHAT on a page. If is the noun, it include things like heading, paragraph, list, table, form, images etc. It's what we use in marking up a webpage. One of the thing a developer must pay attention is how he markups a webpage. Without HTML, a webpage will just be a big block of text without any structure. HTML gives the browser some rule on how to display content on webpage In writing HTML we use the HTML element, this include the following tags such as: <p> for paragraph</p> <h1> heading </h1> <form> for form </form> Html is basically has an opening tag and closing tag wrapping a content. In the next post, I will give basic example of the various tag present in html and also markup a document