-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (73 loc) · 2.07 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Small Projects</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 30px 0;
overflow-x: hidden;
}
h1,
p {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
}
h1 {
color: royalblue;
}
p {
color: rgb(16, 27, 61);
margin: 20px 0;
}
p:last-of-type {
margin: 0 0 40px 0;
}
a {
width: 150px;
flex-wrap: wrap;
margin: 10px 0;
color: #111;
text-decoration: none;
padding: 15px 30px;
background-color: royalblue;
color: #fff;
font-family: Verdana, Geneva, Tahoma, sans-serif;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid royalblue;
transition: all 0.5s;
}
a:hover {
background-color: #fff;
color: royalblue;
transform: scale(1.01);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
</style>
</head>
<body>
<h1>Small Projects</h1>
<p>All links to the deployed web pages of available small projects</p>
<p>P.S. Not all of them are responsive</p>
<a href="./beat-maker/index.html">Beat Maker</a>
<a href="./coloors/index.html">Coloors</a>
<a href="./dynamoo/index.html">Dynamoo</a>
<a href="./former-portfolio/index.html">Former Portfolio</a>
<a href="./imagery/index.html">Imagery</a>
<a href="./natours/index.html">Natours</a>
<a href="./nexter/index.html">Nexter</a>
<a href="./todo-list/index.html">To Do List</a>
<a href="./trillo/index.html">Trillo</a>
<a href="./oliygoh/index.html">Oliygoh</a>
<a href="./furniture-store/index.html">Whimsy Furniture</a>
</body>
</html>