Showing posts with label CSS 2. Show all posts
Showing posts with label CSS 2. Show all posts

Saturday, 8 February 2020

CSS2

ch-1 css2 intro
1.<!DOCTYPE html>
<html>
<head>
<title>
css2 intro
</title>
</head>
<body>
<p style="color:red;font-size:50px;text-align:center;">i am the student of wap institute</p>
</body>
</html>


ch-2 css2 web layout design with sementic elements
1.<!DOCTYPE html>
<html>
<head>
<title>
web layout design with sementic elements
</title>
</head>
<body>
<div style="width:100%;height:180px;border-width:2px;border-style:solid;border-color:red;"></div>
<div style="width:100%;height:40px;border-width:2px;border-style:solid;border-color:red;"></div>
<div style="width:100%;height:500px;border-width:2px;border-style:solid;border-color:red;"></div>
<div style="width:100%;height:40px;border-width:2px;border-style:solid;border-color:red;"></div>
</body>
</html>

ch-3 css2 web layout designing with inline stylesheet
1.