Informática, pregunta formulada por Hoyuse, hace 1 mes

Ayudenme con html

Crea una pagina web en la que coloques un texto alineado ala derecha con color amarillo subrayado

Respuestas a la pregunta

Contestado por conexi0n
0

Respuesta:

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <meta http-equiv="X-UA-Compatible" content="IE=edge">

   <meta name="viewport" content="width=device-width, initial-scale=1.0">

   <title>Título</title>

</head>

<body>

   <div>

       <p><u>Lorem Ipsum is simply dummy text</u></p>

   </div>

   <style>

       div{

           display: flex;

           justify-content: flex-end;

       }

       p {

           color: rgb(190, 190, 2);

       }

   </style>

</body>

</html>

Otras preguntas