Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created October 13, 2020 14:19
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 Alkimisti/dd7006bd7328750d3110b96851d65572 to your computer and use it in GitHub Desktop.
Save Alkimisti/dd7006bd7328750d3110b96851d65572 to your computer and use it in GitHub Desktop.
line
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>line</title>
<style>
#vija1 {
stroke: rgb(255, 0, 0);
stroke-width: 2;
}
#vija2 {
stroke: rgb(255, 0, 0);
stroke-width: 2;
}
</style>
</head>
<body>
<svg height="400" width="500">
<line id="vija1" x1="0" y1="0" x2="150" y2="150"/>
<line id="vija2" x1="150" y1="150" x2="0" y2="200"/>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment