diff --git a/Index.html b/Index.html
new file mode 100644
index 0000000..9414d33
--- /dev/null
+++ b/Index.html
@@ -0,0 +1,13 @@
+
+
+
+
+Hello World
+
+
+
+
+
hello World
+
+
+
diff --git a/i.jpg b/i.jpg
new file mode 100644
index 0000000..df85f25
Binary files /dev/null and b/i.jpg differ
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..f0da5d1
--- /dev/null
+++ b/index.css
@@ -0,0 +1,30 @@
+html{
+margin: 0;
+padding:0;
+}
+body{
+background:#A9A9A9;
+}
+
+#text h1{
+font-size:150px;
+text-align:center;
+margin:auto;
+margin-top:17%;
+font-weight:bold;
+color:rgba(255,255,255,0.5);
+background-image:url(i.jpg);
+-webkit-background-clip:text;
+animation: round 4s linear infinite;
+}
+@keyframes round{
+0%{
+ background-position:left 0 top 10px;
+}
+50%{
+ background-position:left 400px top 10px;
+}
+100%{
+ background-position:left 0 top 10px;
+}
+}
\ No newline at end of file