HTML text formatting tags to create web page - Practical [ SWPD 4311603 ]

Practical Aim: 

Create an HTML page to Provide an introduction to the Computer department/Institute using HTML all formatting tags.
Use HTML text formatting tags to create web page as per given sample.

Solution:

Video Tutorial: Text formatting tags



Code

<!DOCTYPE html >
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Computer Department</title>

</head>

<body>
<h1 align="center" style="color:blue">ABOUT COMPUTER DEPARTMENT</h1>
<hr />
<p><em><strong>Computer engineering </strong></em>is the fastest-growing field in the world. It combines a variety of fields of electrical engineering and computer science needed for the development of computer hardware and software. Computer engineers incorporate computers into other devices and systems, create networks for data transfer, and find ways to make computers quicker, smaller and more efficient.</p>
<hr />
<h3>Institute Vision</h3>
<p><q>To deliver technically <strong>competent and social responsible diploma engineers </strong>for betterment of society.</q></p>
<hr />
<h3>Institute Mission</h3>
<p>- To offer a <em>dynamic, interactive education environment</em> that engages student in the learning process. </p>
<p>- <em>Use resources and technologies to create effective modes</em> and means of instruction that expands access to learning. </p>
<p>- Nurture faculty and students with innovation and <em>industrial training.</em></p>
<hr />
<h3>Department Vision</h3>
<p>The department will be center of excellence in the area of Computer Engineering to meet the needs of industry and society.</p>
<hr />
<pre>
<strong>Department Email address:</strong>
Email: <del>computerdepartment@yahoo.com</del> <ins>bitsofcomputer@gmail.com</ins>
</pre>
<hr />
<h3>DEPARTMENT MISSION
-</h3>
<p> - To ensure concrete teaching learning process for sound fundamentals.
<br />- To impart technical skills through effective outcome based practices on advanced technologies.
<br /> - To prepare industry competent engineers by industry interactions and entrepreneurs activities.
<br /> - To provide a learning environment to enhance innovations, problem solving skills, leadership qualities and ethical responsibilities. </p>

<p> &copy; all rights reserved </p>
</body>
</html>



Output


Post a Comment

0 Comments