CSS
Cascading Style Sheet
The border-style property is used to set the appearance o the borders.
A dotted border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text1
{
border-style: dotted;
}
</style> </head>
<body>
<h3 class="text1">www.skillpundit.com</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text1
{
border-style: dotted;
}
</style> </head>
<body>
<h3 class="text1">www.skillpundit.com</h3>
</body> </html>
Output
www.skillpundit.com
A dashed border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text2
{
border-style: dashed;
}
</style> </head>
<body>
<h3 class="text2">www.skillpundit.com</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text2
{
border-style: dashed;
}
</style> </head>
<body>
<h3 class="text2">www.skillpundit.com</h3>
</body> </html>
Output
www.skillpundit.com
A solid border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text3
{
border-style: solid;
}
</style> </head>
<body>
<h3 class="text3">www.skillpundit.com</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text3
{
border-style: solid;
}
</style> </head>
<body>
<h3 class="text3">www.skillpundit.com</h3>
</body> </html>
Output
www.skillpundit.com
A double border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: double;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming, designing, problem solving, general information about our country, reasoning, mental ability etc. SkillPundit is world's best platform to show your talent.</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: double;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming, designing, problem solving, general information about our country, reasoning, mental ability etc. SkillPundit is world's best platform to show your talent.</h3>
</body> </html>
Output
SkillPundit is the best place to gain knowledge which includes skills like programming, designing, problem solving, general information about our country, reasoning, mental ability etc. SkillPundit is world's best platform to show your talent.
A groove border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: groove;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: groove;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
Output
SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.
A ridge border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: ridge;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: ridge;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
Output
SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.
An inset border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: inset;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: inset;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
Output
SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.
An outset border:
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: outset;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text4
{
border-style: outset;
}
</style> </head>
<body>
<h3 class="text4">SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.</h3>
</body> </html>
Output
SkillPundit is the best place to gain knowledge which includes skills like programming,designing, problem solving , general information about our country, reasoning,mental ability etc.