Untitled

 avatar
unknown
plain_text
2 years ago
708 B
5
Indexable
<!DOCTYPE html>
<html>
  <head>
    <title>Atpakaļgaitas noslēgvārsts</title>
    <style>
      /* Stila definīcijas */
      .circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid black;
      }
      .triangle {
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 50px solid black;
      }
      .line {
        width: 2px;
        height: 50px;
        background-color: black;
        margin: 0 auto;
      }
    </style>
  </head>
  <body>
    <div class="circle"></div>
    <div class="triangle"></div>
    <div class="line"></div>
  </body>
</html>
Editor is loading...