-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
84 lines (74 loc) · 2.61 KB
/
Copy pathabout.html
File metadata and controls
84 lines (74 loc) · 2.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
<!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 {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
padding-bottom: 50px; /* Added padding to fill the page */
}
.container {
width: 80%;
margin: 50px auto;
text-align: center;
}
h1 {
font-size: 36px;
}
.line {
width: 100%;
height: 2px;
background-color: rgb(237, 225, 225);
margin: 20px auto;
opacity: 0.2;
}
.image-container {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.image-container img {
width: 200px; /* Adjusted width to make all images the same size */
height: auto;
margin-bottom: 10px;
}
.image-container div {
flex: 1; /* Added to align text in each column */
text-align: center;
}
.image-container p {
font-size: 18px; /* Adjusted font size */
margin-top: 10px; /* Adjusted margin */
}
</style>
</head>
<body>
<div class="container">
<h1>About Us</h1>
<div class="line"></div>
<div class="image-container">
<div>
<img src="C:\Users\Jayasri\Desktop\BOLT 2.0\ProCode\images\Screenshot 2024-02-22 163219.png" alt="Image 1">
<p><b>Competitive Coding Platform</b></p>
<p>Programming contests, practice problems, and a community to improve coding skills and compete with others.</p>
</div>
<div>
<img src="C:\Users\Jayasri\Desktop\BOLT 2.0\ProCode\images\Screenshot 2024-02-22 163529.png" alt="Image 2">
<p><b>Personalised Learning Path</b></p>
<p>Tailors educational content and activities to individual needs and preferences, fostering efficient and effective skill development.</p>
</div>
<div>
<img src="C:\Users\Jayasri\Desktop\BOLT 2.0\ProCode\images\Screenshot 2024-02-22 163557.png" alt="Image 3">
<p><b>Community Collaboration</b></p>
<p>Fosters collective problem-solving, knowledge-sharing, and skill development through collective efforts and mutual support.</p>
</div>
</div>
</div>
</body>
</html>