Create index.html
Browse files- index.html +41 -0
index.html
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>My app</title>
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
+
<meta charset="utf-8">
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
display: flex;
|
| 10 |
+
justify-content: center;
|
| 11 |
+
align-items: center;
|
| 12 |
+
overflow: hidden;
|
| 13 |
+
height: 100dvh;
|
| 14 |
+
font-family: "Arial", sans-serif;
|
| 15 |
+
text-align: center;
|
| 16 |
+
}
|
| 17 |
+
.arrow {
|
| 18 |
+
position: absolute;
|
| 19 |
+
bottom: 32px;
|
| 20 |
+
left: 0px;
|
| 21 |
+
width: 100px;
|
| 22 |
+
transform: rotate(30deg);
|
| 23 |
+
}
|
| 24 |
+
h1 {
|
| 25 |
+
font-size: 50px;
|
| 26 |
+
}
|
| 27 |
+
h1 span {
|
| 28 |
+
color: #acacac;
|
| 29 |
+
font-size: 32px;
|
| 30 |
+
}
|
| 31 |
+
</style>
|
| 32 |
+
</head>
|
| 33 |
+
<body>
|
| 34 |
+
<h1>
|
| 35 |
+
<span>I'm ready to work,</span><br />
|
| 36 |
+
Ask me anything.
|
| 37 |
+
</h1>
|
| 38 |
+
<img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" />
|
| 39 |
+
<script></script>
|
| 40 |
+
</body>
|
| 41 |
+
</html>
|