Skip to main content

Introduction to Front End Web Development

What is Front End Web Development?

The development of Web-pages or Web Applications using HTML, CSS and JavaScript so that the users can directly interact with it is called Front End Web Development.

Source: Pixabay

Languages used for Front End Development:

Usually three languages are used in Front End Development i.e. 

1. Hyper Text Markup Language (HTML) : Used for defining  the overall framework of how the site will look. 
Latest Version: HTML5

2. Cascaded Style Sheets (CSS) : Controls the presentation aspect of the site and allows your site to have its own unique look i.e. used for styling.
Latest Version: CSS3

3. JavaScript (JS) : It is used to transform a static HTML page into a dynamic interface which means HTML and CSS are for presentation only while JavaScript makes the users to interact with it. 
Latest Version: JavaScript5

Note:  JavaScript is not at all 'Java on web'. It is not related to Java at any cost.

Example:

This site is made with HTML, CSS and JavaScript. Just have a look at the source of the page by right-clicking and then View Page Source (Ctrl+ U).

You will get a pretty much lengthy page of code. Messed up! If you are new to front end web development, you will not be able to understand it at all. 

Conclusion:

We just had a overview what Front End Web Development is. Learn HTML, CSS and JavaScript from the World Wide Web Consortium (W3C) website. 

HTML and CSS are Markup Languages, very easy to learn and can be completely learned within a week! But JavaScript may take some time since it is a programming language not a markup language.
  

Comments

  1. Excellent Article! Such a nice information. Hire experienced and dedicated php developer , Asp.Net Developers, Mobile application developer for custom PHP applications and web development from Xtensible Software.

    ReplyDelete

Post a Comment

Popular posts from this blog

Creating a Web Browser With Integrated Chromium using C#

Final Output Introduction: In this post, we shall start a project to build a C# application integrated with Chromium in Visual Studio. I shall be using Visual Studio Express For Windows Desktop 2013. But the minimum requirements are mentioned below. We shall create a Windows Forms C# project from scratch and integrate Chromium Embedded Framework (CEF) in our application, basic navigation options and much more. Minimum Requirements and Prerequisites: Visual Studio 2012 or Higher that supports NuGet Package Manager. A decent internet connection. Basic Knowledge of C#. Knowlege in using Windows efficiently. Creating A Visual Studio Project: First, create a Visual Studio C# Project through File > New Project > Installed > Visual C# > Windows > Windows Forms . Name the file whatever you want, for example ' Web Browser '. New Project Customising the Form: Now customize the main form by changing its  Properties  like Text to 'Web

How to start programming with JavaScript? Get Started with JavaScript!

Introduction: JavaScript is of-course a programming language. It can be called the 'programming language of the web' as it is one of the core three technologies for Web Development (other than HTML and CSS ). Before you start programming with JavaScript, you have to know what JavaScript is. See also: Basics of Programming Languages and Introduction to Front End Development . Requirements for this blog post: Minimum knowledge of programming terms: Intermediate . Minimum knowledge of JavaScript: None/Beginner . Some JavaScript Characteristics: JavaScript is a high-level , interpreted , dynamic and weakly-typed programming language. It is an object-oriented language like many high-level programming languages. It is a functional language , here function is considered to be an object. The term Vanilla JavaScipt is often used to refer JavaScript with any external frameworks or libraries. Best Free Resources to get started with JavaScript: After searchi

Complete Guide to install Firebase CLI (Command Line Interface)

Source: firebase.google.com Introduction: Firebase is a mobile and web application development platform developed by Firebase, Inc. in 2011, then acquired by Google in 2014. It is one of the most popular platforms nowadays for developing Android applications. It is quite easy to, use with documentation for reference included on its website along with examples.  Firebase requires a browser to interact with. But, for advanced application development, it has a Command Line Interface (CLI) called Firebase CLI. It can be installed on your system, and then have to be used with your system's command line tool, such as Command Prompt in Windows, and Terminal in Linux and Mac. Installing in Windows: To install Firebase CLI, just follow the steps below: You must have installed Node.js and npm on your Windows system. To install refer the video below: Then type the following in your Command Prompt to install Firebase CLI: npm install -g firebase-tools That is it. You a