-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (170 loc) · 5.41 KB
/
index.html
File metadata and controls
180 lines (170 loc) · 5.41 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!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>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container">
<h1 class="h1 mt-5 text-center">Web 101 - Projects</h1>
<div class="row mt-5 mb-5" style="row-gap: 3rem">
<div
class="card m-auto"
style="
width: 18rem;
padding: 0;
overflow: hidden;
border-radius: 15px;
"
>
<img draggable=false
src="./HTML - Personal Site/HTML - Personal Site.png"
height="180px"
alt="HTML - Personal Site.png"
class="card-img-top"
/>
<div class="card-body" style="padding: 1rem 1.5rem">
<h5 class="card-title fw-bold">Personal Site</h5>
<p class="card-text">
This is very basic portfolio. It is created using only HTML.
</p>
<a href="./HTML - Personal Site/" class="btn btn-primary w-100"
>Show More</a
>
</div>
</div>
<div
class="card m-auto"
style="
width: 18rem;
padding: 0;
overflow: hidden;
border-radius: 15px;
"
>
<img draggable=false
src="./CSS - My Site/CSS - My Site.png"
height="180px"
alt="CSS - My Site.png"
class="card-img-top"
/>
<div class="card-body" style="padding: 1rem 1.5rem">
<h5 class="card-title fw-bold">Personal Portfolio</h5>
<p class="card-text">
This is very basic portfolio. It is created using HTML and css.
</p>
<a href="./CSS - My Site/" class="btn btn-primary w-100"
>Show More</a
>
</div>
</div>
<div
class="card m-auto"
style="
width: 18rem;
padding: 0;
overflow: hidden;
border-radius: 15px;
"
>
<img draggable=false
src="./TinDog/TinDog.png"
height="180px"
alt="TinDog.png"
class="card-img-top"
/>
<div class="card-body" style="padding: 1rem 1.5rem">
<h5 class="card-title fw-bold">Tindog</h5>
<p class="card-text">
It is an app for dogs. By which they can meet new dogs nearby.
</p>
<a href="./TinDog/" class="btn btn-primary w-100">Show More</a>
</div>
</div>
</div>
<div class="row mt-5 mb-5" style="row-gap: 3rem">
<div
class="card m-auto"
style="
width: 18rem;
padding: 0;
overflow: hidden;
border-radius: 15px;
"
>
<img draggable=false
src="./Dicee Challenge/Dicee Challenge.png"
height="180px"
alt="Dicee Challenge.png"
class="card-img-top"
/>
<div class="card-body" style="padding: 1rem 1.5rem">
<h5 class="card-title fw-bold">Dicee Challenge</h5>
<p class="card-text">
It is a simple game.which uses random function.
</p>
<a href="./Dicee Challenge/" class="btn btn-primary w-100"
>Show More</a
>
</div>
</div>
<div
class="card m-auto"
style="
width: 18rem;
padding: 0;
overflow: hidden;
border-radius: 15px;
"
>
<img draggable=false
src="./Drum Kit/Drum Kit.png"
height="180px"
alt="CSS - My Site.png"
class="card-img-top"
/>
<div class="card-body" style="padding: 1rem 1.5rem">
<h5 class="card-title fw-bold">Drum Kit</h5>
<p class="card-text">
It is game in which we can play instruments using keys.
</p>
<a href="./Drum Kit/" class="btn btn-primary w-100"
>Show More</a
>
</div>
</div>
<div
class="card m-auto"
style="
width: 18rem;
padding: 0;
overflow: hidden;
border-radius: 15px;
"
>
<img draggable=false
src="./Simon Game/Simon Game.png"
height="180px"
alt="Simon Game.png"
class="card-img-top"
/>
<div class="card-body" style="padding: 1rem 1.5rem">
<h5 class="card-title fw-bold">Simon Game</h5>
<p class="card-text">
It is amazing game.It genrerate random sequence.
</p>
<a href="./Simon Game/" class="btn btn-primary w-100">Show More</a>
</div>
</div>
</div>
</div>
</body>
</html>