-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
95 lines (76 loc) · 2.69 KB
/
about.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
<!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>About us</title>
<style>
*{
font-family: 'Times New Roman', Times, serif;
background-color:beige;
}
.h1{
color: 2px black;
}
.card-body{
box-shadow: 15px 15px rgb(212, 212, 178);
padding: 25px;
}
.card{
padding: 25px;
display: inline-block;
}
.card-body{
border: 2px solid black;
display: inline-block;
font-weight: bolder;
box-shadow: 15px 15px rgb(212, 212, 178);
}
.imag{
border: 2px solid black;
}
</style>
</head>
<body>
<h1>
Who are we ?? </h1>
<h4>-We are Students of SY.Btech </h4>
<h4>-This website is our Mini-project </h4>
<h4>-And this is us below....</h4>
<div class="card" style="width: 18rem;">
<img src="./images /our image and logo/athu.jpg" class="imag" alt="..." width="280rem" >
<div class="card-body">
<p class="card-text">
<h2>-Atharva M Patil</h2>
Debugging is like being the Detective in a crime movie....where you're also the murderer.</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="./images /our image and logo/anuja.jpg" class="imag" alt="..." width="280rem" >
<div class="card-body">
<p class="card-text">
<h2>-Anuja A Patil</h2>
Eating is necessary but Cooking is an art, And i am the Artist</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="./images /our image and logo/aditi.jpg" class="imag" alt="..." width="280rem" >
<div class="card-body">
<p class="card-text">
<h2>
-Aditi S Patil
</h2>
Heart and mind are peaceful when served food is tasteful</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="./images /our image and logo/amey.jpg" class="imag" alt="..." width="280rem" >
<div class="card-body">
<p class="card-text">
<h2>-Amey Kulkarni</h2>
Cooking is one of the great gifts You can give to those you love</p>
</div>
</div>
</body>
</html>