Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div id=text>
<h1>hello World</h1>
</div>
</body>
</html>
Binary file added i.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -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;
}
}