Bienvenidos a archilatutoriales
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Border - Individual Side</title>
</head>
<style>
h1 {
border-style: solid;
border-top-color: red;
border-right-color: green;
border-botton-color: blue;
border-left-color: yellow;
}
</style>
<body>
<h1> Bienvenidos a archilatutoriales </h1>
</body>
</html>