-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (109 loc) · 3.61 KB
/
index.html
File metadata and controls
117 lines (109 loc) · 3.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="style.css" rel="stylesheet" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<section id="myCards">
<div class="card">
<img class="img" src="./assets/1.png" alt="img" />
<div class="box">
<a href="./1_Analog Clock/index.html">Analog Clock</a>
<p>
This project is called Analog Clock which displays the current
time on the screen.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/2.png" alt="img" />
<div class="box">
<a href="./3_Quote Generator/index.html">Quote Generator</a>
<p>
This is a Quote Generator which generate quotes randomly on
clicking a button.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/3.png" alt="img" />
<div class="box">
<a href="./2_Calculator/index.html">Calculator</a>
<p>
This is a simple Calculator made with the help of HTML, CSS, and
JavaScript.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/4.png" alt="img" />
<div class="box">
<a href="./5_Grocery List/index.html">Grocery List</a>
<p>
You can easily make a list of your Grocery items with the help of
this project.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/5.png" alt="img" />
<div class="box">
<a href="./4_Tip Calculator/index.html">Tip Calculator</a>
<p>
You can easily calculate the tip per person with the help of this
Tip Calculator.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/6.png" alt="img" />
<div class="box">
<a href="./11_Tic Tac Toe/index.html">Tic Tac Toe</a>
<p>
This is a very fun Tic Tac Toe game which is very common among the
children.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/7.png" alt="img" />
<div class="box">
<a href="./7_Weather App/index.html">Weather App</a>
<p>
This is a weather app designed to tell you the weather of the city
of your choice.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/8.png" alt="img" />
<div class="box">
<a href="./6_To-do List/index.html">To-do List</a>
<p>
Here is one of my favourite projects which is a To-do List which
helps you schedule your day.
</p>
</div>
</div>
<div class="card">
<img class="img" src="./assets/9.png" alt="img" />
<div class="box">
<a href="./9_SuperHero API/index.html">SuperHero API</a>
<p>
This project displays a SuperHero on the screen on the request of
the user.
</p>
</div>
</div>
</section>
</div>
</body>
</html>