0% found this document useful (0 votes)
2 views2 pages

Program

The document contains CSS properties for styling a webpage related to Arignar Anna Government College for Women in Walajapet. It includes styles for the body, headings, and lists of undergraduate and postgraduate courses. The HTML structure displays the college name, a list of courses, and applies the defined CSS styles.

Uploaded by

tudhayan2006
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Program

The document contains CSS properties for styling a webpage related to Arignar Anna Government College for Women in Walajapet. It includes styles for the body, headings, and lists of undergraduate and postgraduate courses. The HTML structure displays the college name, a list of courses, and applies the defined CSS styles.

Uploaded by

tudhayan2006
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

2.

CSS PROPERTIES

body {

background-color:lightblue;

border:3px dotted yellow;

.main{

text-align:center;

.cfg{

text-decoration:underline;

color:blueviolet;

font-size:45px;

#p{

color:#ff0000;

font-size:30px;

font-height:bold;
<html>
<head>
<link rel="stylesheet"href="[Link]">
</head>
<body>
<div class="main">
<div class="cfg">ARIGNAR ANNA GOVERNMENT COLLEGE FOR WOMENS WALAJAPET</div>
<div id="p">LIST OF COURSES </div>
<div class="h1">UG COURSES
<ol type="1">
<li>BA TAMIL</li>
<li>BA ENGLISH </li>
<li>BSC cs</li>
<li>BSC MATHS</li>
<li>BSC CHEMISTRY</li>
</ol>
</div>
<div class="h2">PG COURSES
<ul type="decimal">
<li>MA TAMIL</li>
<li>MA ENGLISH</li>
<li>MSC CS</li>
<li>MSC MATHS</li>
<li>MSC CHEMISTRY</li>
</ul>
</div>
</body>
</html>
2. CSS PROPERTIES

.h1{

font-style:italic;

float:left;

text-align:left;

font-size:20px;

color:#00AB56;

.h2{

float-left;

text-align:left;

font-size:20px;

color:orange;

<html>
<head>
<link rel="stylesheet"href="[Link]">
</head>
<body>
<div class="main">
<div class="cfg">ARIGNAR ANNA GOVERNMENT COLLEGE FOR WOMENS WALAJAPET</div>
<div id="p">LIST OF COURSES </div>
<div class="h1">UG COURSES
<ol type="1">
<li>BA TAMIL</li>
<li>BA ENGLISH </li>
<li>BSC cs</li>
<li>BSC MATHS</li>
<li>BSC CHEMISTRY</li>
</ol>
</div>
<div class="h2">PG COURSES
<ul type="decimal">
<li>MA TAMIL</li>
<li>MA ENGLISH</li>
<li>MSC CS</li>
<li>MSC MATHS</li>
<li>MSC CHEMISTRY</li>
</ul>
</div>
</body>
</html>

You might also like