source for lucas.co
Create indexx.html
indexx.html | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/indexx.html b/indexx.html
new file mode 100644
index 0000000..7a65250
--- /dev/null
+++ b/indexx.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<style>
+body {
+ background-color: #8fb6ff;
+ margin: 0;
+}
+.gradient {
+ animation: animateBg 180s infinite linear;
+ background-color: #fff;
+ background-image: linear-gradient(0deg, #fff, #000, #da3287, #fff);
+ background-size: 100% 300%;
+ height: 100vh;
+ width: 100vw;
+}
+@keyframes animateBg {
+ 0% {
+ background-position: 0 150%;
+ }
+ 100% {
+ background-position: 0 0;
+ }
+}
+div.work {
+ position:absolute;
+ left: 3vw;
+ top: 3vh;
+}
+</style>
+<title>Page Title</title>
+</head>
+<body>
+
+<canvas id="canvas1" width="400" height="100"
+style="border:1px solid #000000;">
+You are a loser.
+</canvas>
+
+<article class="gradient"></article>
+<div class="work"><p><a href="file:///C:/Users/lsgal/OneDrive/Documents/website/index.html">Work</a></p></div>
+
+</body>
+</html>
\ No newline at end of file