Skip to content

Commit

Permalink
added d html css
Browse files Browse the repository at this point in the history
  • Loading branch information
lyqht committed Oct 2, 2019
1 parent 00844a9 commit 91301a5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
9 changes: 9 additions & 0 deletions d.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
h1 {
-webkit-transition: -webkit-transform 0.8s ease-in-out;
transition: transform 0.8s ease-in-out;
}
h1:hover {
cursor: default;
transform: rotate(360deg);
transition: all 0.3s ease-in-out 0s;
}
25 changes: 25 additions & 0 deletions d.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link rel="stylesheet" href="./d.css" />
<title>dddddddddd</title>
</head>

<body>
<h1 style="font-family: Roboto">D</h1>
</body>
</html>

0 comments on commit 91301a5

Please sign in to comment.