Skip to content

Commit e67deb0

Browse files
committed
first commit
0 parents  commit e67deb0

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<!-- CSS Link -->
9+
<link rel="stylesheet" href="style.css">
10+
<title>Document</title>
11+
</head>
12+
13+
<body>
14+
<!-- A Text Will Appear When Someone Hover On It -->
15+
<div title="Click To Enter Creator's Account" class="title">
16+
<!-- Main Text -->
17+
<a href="https://www.github.com/devsujay19/">ProgrammingX</a>
18+
</div>
19+
</body>
20+
</html>

style.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
display: flex;
5+
justify-content: center;
6+
align-items: center;
7+
min-height: 100vh;
8+
background: #031321;
9+
}
10+
11+
a {
12+
font-family: sans-serif;
13+
position: relative;
14+
display: inline-block;
15+
padding: 15px 30px;
16+
color: #2192f3;
17+
border: 5px solid #2196f3;
18+
border-radius: 50px;
19+
text-transform: none;
20+
letter-spacing: 4px;
21+
text-decoration: none;
22+
font-size: 24px;
23+
overflow: hidden;
24+
transition: 0.2s;
25+
}
26+
27+
a:hover {
28+
color: #255784;
29+
background: #2196f3;
30+
border: 5px;
31+
box-shadow: 0 0 70px #2196f3, 0 0 70px #2196f3, 0 0 70px #2196f3;
32+
transition-delay: 0.1s;
33+
filter: brightness(200%);
34+
}

0 commit comments

Comments
 (0)