12 It Journal
12 It Journal
CERTIFICATE
Department of Information Technology
Date: / /20
work,prescribed by H.S.C Board, Kolhapur for J.C. course and this journal
Information Technology
Index
12 tally practical
Practical No 1
Q. Creation of website using HTML5
Create a website using HTML5 and CSS using any 4 css properties. Write a code for 2 separate pages having
different file name such first page as in-dex.html, 2 nd page as page 2.html as form.html. Use any theme such as
college profile or company profile etc. Every page must contain proper Meta information and design webpage as
follows-
1) The index page must contain a heading which is highest among other text on pages and must be at
center of the page. There must be a paragraph which introduces general information about the theme
chosen must have at least 3 physical style tags and one image with alternate text. This page must be
connected to other page with proper navigational links.
2) The 2nd page must contain the feedback or enrollment form related with theme chosen with feature of
html5. The form must contain text element and email address of the company or person. Include the
submit button.
*First coding:
<HTML>
<HEAD>
<Meta Charset="UTF-8">
<style>H1{border-style:dotted}
P{color:red;font-size:15pt}
b{text-decoration:overline}
u{text-align:right} </style>
</head>
<body>
<H1align="center">SKY EDUCATION </h1>
<P> everything is education, everything is learning, aim high, join sky </p>
<b>quality education</b><br>
</body>
</html>
*Second coding:
<HTML>
<HEAD>
<TITLE>
FORM</TITLE>
<Meta charset="utf-8">
<meta name="author" content ="form">
<style>
H1{border-style:dashed}
body{background-color:aqua}
</style>
</head>
<body>
<form name="f1">
<input type="text"name="t1"required><br><br>
<input type="email"name="emailid"><br>
</form>
</body>
</html>
Practical No.2
Q. Create a webpage using HTML5 and CSS code to design a web page as the layout
displayed below.
The top section will display the heading ,”Tourist places” in header. The section on the left has list of Cities. The
right hand side display tourist places in any one of the city.
Use Inline style sheet in the top section to display background colour for the text “Tourist places”. Use internal
stylesheet for the left and right section with background colour and font styles.
Tourist places
1. Pune ● Shaniwarwada
4.Delhi
*First coding
<!DOCTYPE HTML>
<HTML>
<Head>
<Title>tourist place</title>
<style>
section {background-color:pink;width:50%;height:50%;float:right}
aside{width:50%;float:left}
ol{font-style:italic;font-size:15pt}
ul{font-weight:bold;font size:20pt}
</style>
</head>
<body>
<header style="background-color:skyblue;height:100pt">
</header>
<br>
<aside>
<H3>City</H3>
<ol>
<li>pune</li>
<li>banglore</li>
<li>hydrabad</li>
<li>delhi</li>
</ol>
</aside>
<section>
<H3>Tourist place in pune</H3>
<ul>
<li>shanivarwada</li>
<li>kelkar museum</li>
<li>sinhgad fort</li>
</ul>
</section>
</body>
</html>
Practical No.3
Q.create a website using HTML and CSS code to design a web pages as
follows-
The first webpage will accept the name of the traveller, Date of travel, telephone number. It also has
submit button as an image.
The second webpage has information about the name of transporter, time, seat no and destination displayed
one below the other in the form of unordered list as
Seat no – B39
Destination – Delhi
Both pages should be interlinked. Create external stylesheet with relevant tags.
First coding:
<!Doctype html>
<head>
<link rel="stylesheet"type="text/css"
href="external.css">
</head>
<body>
<form name=f1>
<input type="date"name="trdate"><br><br>
</form><br><br>
<a href="page2.html">
<img src="download.png"width="150"></a>
</body>
</html>
*Second coding:
<html>
<head>
<link rel="stylesheet"type="text/css"
href="external.css">
</head>
<body>
<ul>
<li>Time-9:30am</li>
<li>Seat No-B39</li>
<li>Destination</li>
</ul>
</body>
</html
For external
H1{color:navy;margin-left:20px}
body{color:red}
ul{font-family:algerian}
Practical No.4
<!Doctype html>
<html>
<head>
<title>audio file</title>
</head>
<body>
<source src="song.mp3"type="audio/mp3">
</audio>
</body>
</html>
Practical No.5
audio1.html
<html>
<head>
<body>
<ol>
<li>mp3-audio</li>
<li>ogg-audio</li>
<li>wav-audio</li>
</ol>
<audio controls>
<source src="C:\Users\ADMIN\Downloads\sample-3s.mp3"
type="audio/mpeg" >
</audio>
</body>
</html>
Output:
Practical No.6
Q.Use of video on web pages using html5.
Create a webpage named video.html to display a video file on web page and plays automatically.
<!Doctype html>
<html>
<head>
<title>video file</title>
</head>
<body>
<H1>video file</H1>
</video>
</body>
</html>
Practical No: 7
Create a another webpage which provides multiple source file
formats for the same video file that plays a sound automatically
with controls.The dimensions of video area should be 100*100pixels.
The browser should display the message with appropriate
attribute,when video file is not supported by browser.The code must
incorporate the list of video files formats(like webM,MP4 or ogg
etc).
Vedio1.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<ol>
<li>mp4-video/mpeg</li>
<li>ogg-video/ogg</li>
</ol>
<source src="C:\Users\ADMIN\Downloads\sample-5s.mp4"
type="video/mp4">
<source src="C:\Users\ADMIN\Downloads\
file_example_OGG_480_1_7mg.ogg" type="video/ogg">
</video>
</body>
</html>
OUTPUT:
Practical No: 8
Q.With the help of the SEO tool which is freely available optimize the website
and write down the following findings.
Q.3 Whether the site has Header Tags?If yes, which tags are there?
Q.4 Whether the imges used has Alt Atributes?
Practical No:9
Q.1 Total number of recommended improvement are?
Q.3 Whether the website has links with the social media? If Yes, Give name of
the social media.
Practical No:10