Front-end web development
Front-end web development is the development of the graphical user interface of a website through the use of HTML, CSS, and JavaScript so users can view and interact with that website.
Tools used for front-end development
There are several tools and platforms, such as WordPress, Joomla, and Drupal, available that can be used to develop the front end of a website.HyperText Markup Language
HyperText Markup Language is the modern standard for displaying and structuring web content across the internet. HTML defines what elements will be displayed on a website, and how they will be arranged. All major web browsers are designed to interpret HTML, and most modern websites serve HTML to the user. Hypertext is text displayed on a computer with references to other text, these references are termed "hyperlinks." When an internet user interacts with a hyperlinked item, the website serves the user the linked data. This data can be another HTML web-page, JavaScript, or anything else. The latest major release of HTML is HTML5, originally published on October 28, 2014 as a W3C recommendation.Cascading Style Sheets
Cascading Style Sheets control the presentation and style of a website. CSS uses a cascading system to resolve style conflicts by applying style rules based on specificity, inheritance, and importance. Media queries allow for adjustments to the site's layout and appearance depending on factors such as screen size and resolution. CSS can be applied in three ways: external stylesheets linked in an HTML file, internal blocks, or inline within individual elements.JavaScript
JavaScript is an event-based imperative programming language that is used to transform a static HTML page into a dynamic interface. JavaScript code can use the Document Object Model, provided by the HTML standard, to manipulate a web page in response to events, like user input.Using a technique called AJAX, JavaScript code can also actively retrieve content from the web, and also react to server-side events as well, adding a truly dynamic nature to the web page experience.