Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Codigo ejemplo border-side2

Border - Individual Side

Bienvenidos a archilatutoriales


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Border - Individual Side</title>
</head>
<style>
h1 {
  border-style: solid;
     border-color: red green blue yellow;
  }

</style>
<body>
<h1> Bienvenidos a archilatutoriales </h1>
</body>
</html>