HTML

<html>
<head>
<title> My first Webpage. </title>
</head>
<body>
This is my first homepage. <b> This text is bold </bold>
</body>
</html>



  • <html> - contains the web page document
  • <head> - contains the head section
  • <body> - contains the body section that consists of the text and elements that display in the browser viewport
  • <title> - title of the webpage
  • <b> - text displayed in bold font 

  • HTM - is used as alternate to HTML by few servers that do not accept four character extensions. 
  • HTML Extension - the original file extension for HTML pages running on web servers.

  • For Google Chrome users, 
  1. Press Ctrl+U on your computer's keyboard.  
OR

  1. Right-click on a blank part of the web page and select View page source from the pop-up menu that appears.
OR 


  1. Open Chrome and navigate the web page of your choice.
  2. Click on Customize and control Google Chrome Chrome settings icon icon in the upper-right side of the browser window.
  3. From the drop-down menu that appears, select More tools and then Developer tools.
  4. Click the Elements tab at the top of the new section that appears.
Tip: With the latest versions of Chrome, pressing the F12 key or Ctrl+Shift+I also brings up the interactive developer tool. This tool provides much more interaction with the source code and CSS settings, allowing users to see how changes in the code affect the web page immediately.

Comments

Popular posts from this blog