HTML Textarea Border Example
HTML Textarea Border in Different Style Examples Code are here include HTML Border Style Solid, Dotted, Dashed, Double, Groove, Inset, Outset Examples.
Textarea Solid Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:solid 1px orange;">
I like web tutorial because....
</textarea>
</body>
</html>
Textarea Dotted Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:dotted 2px orange;">
I like web tutorial because.....
</textarea>
</body>
</html>
Textarea Dashed Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:dashed 2px orange;">
I like web tutorial because.....
</textarea>
</body>
</html>
Textarea Groove Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:groove 6px orange;">
I like web tutorial because.....
</textarea>
</body>
</html>
Textarea Double Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:double 4px orange;">
I like web tutorial because.....
</textarea>
</body>
</html>
Textarea Inset Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:inset 4px orange;">
I like web tutorial because.....
</textarea>
</body>
</html>
Textarea Outset Border Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="border:outset 4px orange;">
I like web tutorial because.....
</textarea>
</body>
</html>