-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="shortcut icon" href="lemon.png" type="image/x-icon">
<link rel="icon" href="lemon.png" type="image/x-icon">
<title>Lemon</title>
<style>
img{
transition: transform .7s ease-in-out;
}
img:hover{
transform: rotate(360deg) scale(1.1);
}
</style>
</head>
<body class="d-flex justify-content-center align-items-center min-vh-100">
<img class="col-lg-1 col-5 mx-3" src="lemon.png" alt="Logo">
<div class="flex-column m-3">
<h2 class="mt-3">Lemon</h2>
<h5>Micro framework</h5>
<a class="btn btn-warning my-1 shadow-lg" href="/docs.html">Documentation</a>
<a class="btn btn-warning my-1 shadow-lg" href="/about.html">About</a>
</div>
</body>
</html>