Awppractical1

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

NAME: GIGANI MOHD FAIZAN I

ENROLLMENT NO: 190280116027

AWP PRACTICAL 1

AWP 1 190280116027
AWP: Practical-1

Aim: Design a web pages of your department with an


attractive background color, text color, an Image, font etc.
(use external CSS).

Code:

1) Main.html

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initialscale=1.0">
<title> IT - Department </title>
<link rel="stylesheet" href="styling.css">
<link rel="stylesheet"

AWP 2 190280116027
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap
.min.css"> <script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.
js"></script> <script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.m
in.js"></script>
</head>

<body>

<header id="ld">

<img src="C:\Users\Qaisarali\Desktop\temp\header.png"
alt="Fail">

<nav class="navbar navbar-inverse">


<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">IT Dept</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Faculty Details</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Notice Board</a></li>
<li><a href="#">Photo Gallery</a></li>
</ul>
</div>
</nav>

</header>

<h1>
Welcome to IT Department
</h1>

<div id="Dept">
<img src="C:\Users\Qaisarali\Desktop\temp\dept.jpg"
alt="Fail">

AWP 3 190280116027
</div>

<div id="vision">

<h3>Vision :</h3>

To shape the young minds of aspiring Information


Technology engineers to become the front runner in the
sustainable technological growth of our country, conserving its
rich cultural heritage and catering to its socioeconomic needs.
<h3>Mission :</h3>

<ol>
<li>Bringing innovative approach in teaching-learning
process to produce competent Information Technology
engineers.</li> <li>Provide opportunities and
necessary exposure to the young engineers to develop themselves
into responsible professionals.</li>
<li>Infusing lifelong learning ability in the aspiring
minds with the view of making them sensible towards their social
responsibilities.</li>
</ol>

</div>

<div id="table">
<table border="4px">

<thead>
<th>Name of course</th>
<th>Type</th>
<th>Period</th>
<th>Intake</th>
<th>Year's of starting</th>
</thead>

<tbody>
<tr>
<td>Information Technology</td>
<td>UG</td>
<td>4</td>
<td>120</td>

AWP 4 190280116027
<td>2000</td>
</tr>

<tr>
<td>Information Technology</td>
<td>PG</td>
<td>2</td>
<td>18</td>
<td>2010</td>
</tr>

</tbody>

</table>
</div>

<footer id = "foot">

<ul>
<li>L.D. College of Engineering Opp Gujarat
University,Navrangpura, Ahmedabad - 380015. GUJARAT INDIA</li>
<li>Phone No: 079 2630 2887</li>
<li>Email: ldce-abad-dte@gujarat.gov.in</li>
<li>2021 © LDCE. All rights Reserved | Design by
Qaisarali</li>
</ul>

AWP 5 190280116027
</footer>

</body>
</html>

2) Styling.css

*{
font-family: monospace; font-
weight: 10px;
margin: 2px;
}
h1{
text-align: center; text-
decoration: underline;
}
nav{
margin-top: 10px;
}
thead{
text-indent: 10px;
}

#foot{ height: 90px;


background: black;
color: white;
padding: 5px;
}

#table{
margin-top: 10px; margin-
bottom: 13px;
}
table{
text-align: center;
padding: 50px;
}

190280116027
AWP 5
3) Output:

AWP 6 190280116027

You might also like