Skip to main content

Tools used in Front-End development

 


3.1   HTML (The organizer)-

Hyper Text Markup Language - to develop web-pages.

The web-documents are being written in a language called HTML. Hence, we can say that HTML is a language used to create websites. These websites can then be accessed by anyone connected to the internet on various browsers such as chrome, Firefox, safari etc.

     When we save an HTML file, extention.htm or .html is used.

o Hyper Text- It is a way by which you move around on the web by just clicking on special text called hyperlinks. Hyper just means that you can go to anywhere on the internet by just clicking on links whenever you want.

o Markup-is the method what happens to the text inside HTML tags. It is marked as a particular type of text (as italic text).

Also visit ExploringBits .It is clear from the name itself that it is a markup language which means HTML is used to simply “Markup” a text document with tags that tell a browser how it should be structured it to display.



Comments

Popular posts from this blog

JAVASCRIPT (JS)

  INTRODUCTION JS is very versatile Client-Side language. JS is mostly used for developing the understanding between the webpage and a client. We can also say, a webpage can be made more appealing and spirited, with the assistance of JS. JS may run on most of the internet browsers and on any Operating System. JavaScript is the number one and one of the best coding languages in the world and also very easy. JS along with CSS and HTML makes up the core building blocks of the Internet and the World Wide Web . Application of JavaScript in Web Development ·        JavaScript is utilized for creating web pages. ·        JavaScript is a stand-alone language which is developed in Netscape. ·        JavaScript is used when a website is to be made interactive and add special transitions used by all websites for the cause of validation. ·        JavaScript can ...

Basic Structure of JavaScript

  JavaScript can be implemented using JS code in between <script> …. </script> tag if you have kept your JS code inside the HTML document itself. The script tag contains two significant attributes: - ·         Language- This attribute indicates what scripting language you are using in a web page. Normally, the standard will be “javascript”. Latest version of Html(Html5) does not require the use of this attribute anymore.   ·         TYPE- This library is used for what is presently instructed to show the scripting syntax being used and in JavaScript its value should be set to “text/javascript”.

Cascading Style Sheet

  CSS ( The Stylist ) HTML is responsible for all the core foundation and CSS is responsible designing of webpage like pretty layout, add colors to your font, change the font-size and font-style etc. Both are used together.               Hence we can say that- “It is a language for specifying how documents/web-pages are presented to the user.” By the use of CSS, we can manage what the color of text, style of fonts, background color and images, spaces between the paragraphs, variation in display for different devices and screen size should be, how columns are sized etc. It gives us the control over presentation of the document.   History and versions- It was invented by HakonWium Lie in 1994 and maintained by a group of people within the W3C (World Wide Web Consortium). This group creates docs. called ‘specifications’. After a discussion by W3C members, it becomes a ‘recommendation’. In December 1996, C...