LEC: 2 | Web development
LEC:1
Basic HTML Tags
Source Code:
<!DOCTYPE html>
<!-- type of file or document -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Runway with code</title>
</head>
<body>
<!-- h1 to h6 ---Heading -->
<h1>Runway with code</h1>
<h2>Runway with code</h2>
<h3>Runway with code</h3>
<h4>Runway with code</h4>
<h5>Runway with code</h5>
<h6>Runway with code</h6>
<!-- p ---paragraph -->
<p>Hello runway we are on the go.</p>
<span>Hello someone is hungry.</span>
<!-- imgage tag used to load images in our website -->
<img src="logo1.png" alt="image is not available at the
time " width="100%" height="20%">
<!-- anchar tag use for creating links on website -->
<a href="https://www.google.co.in/webhp">click on me....
</a>
</body>
</html>
Comments
Post a Comment