Skip to main content

Web Front-End Development

Web Front-End Development

Web pages can be developed using languages  HTML,CSS,JAVASCRIPT,BOOTSTRAP.

html(HyperText Markup Language)

  • HTML is the standard markup language for Web pages

  • HTML elements are the building blocks of HTML pages

  • HTML elements are represented by <> tags

  • HTML adds content to webpage. ex:- paragraphs,tables,images,buttons etc..

CSS(Cascading Style Sheets)

  • CSS describes how HTML elements are to be displayed

  • CSS adds styles to the webpage

  • Ex:- colors,alignments,font-size,background-image etc..

Javascript

  • JavaScript is the Programming Language for the Web.

  • JavaScript can update and change both HTML and CSS.

  • JavaScript can calculatemanipulate, and validate data.

Bootstrap

  • CSS Framework for developing responsive and mobile-first websites.

  • Bootstrap includes HTML and CSS based design templates for typography, forms, buttons, tables, navigation, modals, image carousels and many other, as well as optional JavaScript plugins

 

Comments

Popular posts from this blog

C pointers

  C pointers theory C pointers practice 1)Adding two numbers using pointer 2)multiplying 3 numbers using pointers 3)Program to Swap Elements Using Call by Reference(using pointer) 4)Access the elements of array using pointer and display the largest number      

C Functions

  User Defined Function User defined Function return practice 1)C Program to Display Prime Numbers Between Intervals Using Function 2)C Program to Check Prime or Armstrong Number Using User-defined Function 3)C Program to Find the Sum of Natural Numbers using Recursion      

C Control Statements

for Loop while loop do...while loop practice 1)print Fibonacci  series 2)check whether given number is palindrome 3)c program to reverse a number