Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tedchirvasiu
Created February 19, 2020 06:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tedchirvasiu/64ee62740b31d522ec9eb119c22feed2 to your computer and use it in GitHub Desktop.
Save tedchirvasiu/64ee62740b31d522ec9eb119c22feed2 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Linie punctata</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Punctata --->
<div style="width: 100px; border-bottom: 3px dotted black"></div>
<div style="height: 20px"></div> <!-- (Spatiere) -->
<!-- Intrerupta --->
<div style="width: 100px; border-bottom: 3px dashed black"></div>
<!-- SVG -->
<!-- Sursa: https://www.w3schools.com/graphics/svg_stroking.asp -->
<svg height="80" width="300">
<g fill="none" stroke="black" stroke-width="4">
<path stroke-dasharray="5,5" d="M5 20 l215 0" />
<path stroke-dasharray="10,10" d="M5 40 l215 0" />
<path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
</g>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment