MST 4220
MST 4220
MST 4220
WEEK-1A
"IEKart's is an online shopping website that sells goods in retail. This company deals
Description:
The metadata means information about data.<meta> tag is used to represent the metadata about
the HTML document. It specifies page description, keywords, copyright, language, author of the
documents, etc.The metadata does not display on the webpage, but it is used by search engines,
browsers and other web services which scan the site or webpage to know about the
webpage.With the help of meta tag, you can experiment and preview that how your webpage will
render on the browser.The <meta> tag is placed within the <head> tag, and it can be used more
than one times in a document.
Source code:
<html>
<head>
<meta charset="utf-8">
<meta name="keywords" content="HTML, CSS, JavaScript, Tutorials">
<meta name="description" content="Free Online tutorials">
<meta name="author" content="thisauthor">
<meta http-equiv="refresh" content="5; url=https://www.javatpoint.com/html-tags-list">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h2>Example of Meta tag</h2>
<p>This example shows the use of meta tag within an HTML document</p>
</body> </html>
WEEK-1E
Aim: Add the Character Entites symbol in the Home page footer of IEKart's Shopping
application.
Source code:
10 20<br><br>
10 < 20<br><br>
13 > 4<br><br>
10 && 20<br><br>
© <br><br>
€23<br><br>
£45<br><br>
$35<br><br>
¢455<br><br>
®<br><br>
Output:
WEEK-1F
Aim: Add the global attributes such as contenteditable, spellcheck, id etc. to enhance the
<html>
<head>
<style>
blockqoute{
background: #eee;
border-radius: 5px;
margin: 16px 0;
blockqoute p{
padding: 15px;
cite {
font-weight: bold;
</style>
<body>
<blockquote contenteditable="true">
<p>welcome to html</p>
</blockquote>
<cite contenteditable="TRUE">heloo....</cite>
</body>
</head>
</html>
Output:
<html>
<body>
<ul>
</ul>
</body>
</html>
Output:
WEEK-1C
Module Name: Paragraph Element, Division and Span Elements, List Element
Aim: Make use of appropriate grouping elements such as list items to "About Us" page of
<html>
</html>
Output:
<html>
<head>
<style>
#p1{background-color:red;}
#p2{background-color:blue;}
</style>
</head>
<body>
<div id="p1">
<p>hello world</p>
</div>
<div id="p2">
<p> Welcome</p>
</div>
</body>
</html>
Output:
<html>
<body>
<div>
<p>welcome to PSCMRCET</p>
</div>
</body>
</html>
Output:
<html><body>
<ul><li>C++</li>
<li>Java</li>
<li>Python</li>
</ul>
</body></html>
Output:
<html><body>
<ol>
<li>HTML</li>
<li>Selenium</li>
<li>Pearl</li>
</ol>
</body>
</html>
Output:
WEEK-1D
Aim: Link "Login", "SignUp" and "Track order" to "Login.html", "SignUp.html" and
Shopping application
<form>
<fieldset>
<legend>LOGIN</legend>
<label>Name:</label><input type="text"><br><br>
<label>Passward:</label><input type="passward"><br><br>
<button>Submit</button><br><br>
</fieldset>
</form>
</html>
Output:
<html>
<form>
<fieldset>
<legend>SIGN UP</legend>
<label>Name:</label><input type="text"><br><br>
<label>Email:</label><input type="email"><br><br>
<label>Passward:</label><input type="passward"><br><br>
<button>Submit</button><br><br>
</fieldset>
</form>
</html>
Output:
<html>
<body>
<input type="search">
<input type="submit">
</body></html>
Output:
<html>
<body>
<a href="Login.html">Login</a>
<a href="Singup.html">Singup</a>
<a href="track.html">Track</a>
</body>
</html>
Output:
WEEK-1B
sectioning elements.
<html>
<head>
<style>
nav{
background-color:yellow;
</style></head>
<body>
<nav>
<a href="unit1.html">unit1</a>
<a href="unit2.html">unit2</a>
<a href="unit3.html">unit3</a>
</nav>
</body>
</html>
Output:
<html>
<style>
header{
background-color:red;
</style>
<header>
<h1>welcome</h1>
<p>PSCMRCET</p>
</header>
</html>
Output:
<html>
<body>
<h1>Footer element</h1>
<footer>
© <a href="mailto:[email protected]">PSCMR</a>
</footer>
</body>
</html>
Output:
<html>
<head>
<style>
aside{
padding-left:45px;
width:500;
</style>
</head>
<body>
<aside>
<h2>Hello world</h2>
<p>Epcot is a theme park at Walt Disney World Resort featuring exciting attractions,
international pavilions, award-winning fireworks and seasonal special events.</p>
</aside>
</body>
</html>
Output:
<html>
<body>
<article>
<h2>Hello World</h2>
<h3>Welcome</h3>
</article>
</body>
</html>
Output:
<html>
<section style="color:blue;">
<h1>FRONT END</h1>
<p>JAVASCRIPT,CSS,HTML</p>
</section>
<section style="color:red;">
<h1>BACK END</p>
<p>PHP,MYSQL</p>
</section></html>
Output: