-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutUs.html
92 lines (84 loc) · 3.17 KB
/
AboutUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url("http://wallpapercave.com/wp/oNhi6z8.jpg");
background-size: cover;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.about-section {
display: flex;
flex-direction: column;
align-items: center;
margin: 50px 0;
animation: fadeIn 1s ease-in-out;
}
.about-section:not(:last-child) {
margin-bottom: 50px;
}
.about-section img {
border-radius: 50%;
width: 150px;
height: 150px;
object-fit: cover;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.about-section img:hover {
transform: scale(1.1);
}
.about-section h2 {
font-size: 24px;
margin: 10px 0;
}
.about-section p {
font-size: 18px;
text-align: center;
max-width: 600px;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<div class="about-section">
<img src="https://www.impactplus.com/hs-fs/hubfs/blog-image-uploads/best-about-us-pages.jpg?length=780&name=best-about-us-pages.jpg" alt="Person 1">
<h2>About Us</h2>
<p>Think India is a manifestation of the vision to connect the students across India's educational Institutes to a nationalistic thought process and to harness their collective potentials towards the aim of national reconstruction.</p>
</div>
<div class="about-section">
<img src="https://svitla.com/uploads/0/3084-computer_vision_main.jpg?1573565447" alt="Person 2">
<h2>Vision</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum velit, tempore perspiciatis maiores voluptatem voluptate nesciunt sed. Distinctio alias tempora aliquid saepe quae sit rerum est. Accusantium cumque ex harum.</p>
</div>
<div class="about-section">
<img src="https://d2gg9evh47fn9z.cloudfront.net/1600px_COLOURBOX36875864.jpg" alt="Person 3">
<h2>Mission</h2>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Sint corporis veritatis error quis voluptatibus odit quia? Iste excepturi ex est, ratione cum, consequatur eaque dignissimos hic, provident voluptates numquam itaque!</p>
</div>
</div>
</body>
</html>