-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (105 loc) · 2.9 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home</title>
<link rel="icon" href="website.png">
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body {
background-color: rgb(10, 63, 116);
}
nav {
height: 80px;
background-color: rgb(0, 154, 168);
color: rgb(6, 10, 46);
text-align: center;
padding: 10px;
}
nav h1 {
font-size: 35px;
color: rgb(54, 45, 124);
}
.main {
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 100px;
}
.boxes {
height: 300px;
width: 250px;
background-color: rgb(10, 63, 116);
display: flex;
flex-direction: column;
}
.boxes a {
text-decoration: none;
}
.img {
height: 220px;
width: 250px;
background-color: rgb(10, 63, 116);
overflow: hidden;
}
.img img {
height: 220px;
}
.text {
color: rgb(0, 183, 255);
font-size: 25px;
margin-top: 20px;
padding-left: 40px;
}
footer {
position: fixed;
width: 100%;
bottom: 0;
left: 0;
display: flex;
justify-content: center;
color: rgb(169, 175, 244);
}
@media (max-width : 750px) {
.main {
flex-direction: column;
}
}
</style>
</head>
<body>
<nav>
<h1>Utility</h1>
<h2>An app for basic needs</h2>
</nav>
<div class="main">
<div class="boxes">
<a href="Calculator/calc.html">
<div class="img"><img src="calcimg.png" alt=""></div>
<div class="text"><strong>Calculator</strong></div>
</a>
</div>
<div class="boxes">
<a href="To-do app/todo.html">
<div class="img"><img src="todoimg.png" alt=""></div>
<div class="text"><strong>To-Do List</strong></div>
</a>
</div>
<div class="boxes">
<a href="Tic-Tac-Toe/ttt.html">
<div class="img"><img src="tttimg.png" alt=""></div>
<div class="text"><strong>Tic-Tac-Toe</strong></div>
</a>
</div>
</div>
<footer>
<p>© Ayush Sahu 2023</p>
</footer>
</body>
</html>