Created
June 1, 2020 22:23
-
-
Save emiremen/6485f09138514f95f81cad711b438ced to your computer and use it in GitHub Desktop.
Rainbow Line With HTML/CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>Rainbow Line</title> | |
<style type="text/css">*{margin: 0;padding: 0;} | |
.rainbow{ | |
width: 100%; | |
height: 8px; | |
background-repeat:repeat-x; | |
background: linear-gradient(to right, | |
#eb5252, | |
#f78f2f, | |
#f4c151, | |
#75d850, | |
#6284FF, | |
#eb5252 | |
); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="rainbow"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment