-
Notifications
You must be signed in to change notification settings - Fork 37
/
webPage.html
125 lines (105 loc) · 3.45 KB
/
webPage.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
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
// web page for a web site
<!-- WHY TATHASTU PAGE BY MANJU THAKUR(mthakur7) -->
<!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">
<link rel="icon" href="https://notestwowaits.s3.us-east-1.amazonaws.com/notes/icon.png">
<title>Why Tathastu</title>
<style>
body {
font-family: sans-serif;
}
h2 {
text-align: center;
font-size: 40px;
font-weight: 700;
}
.row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin: 40px;
}
.col {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
margin: 20px;
width: 350px;
height: 200px;
}
.col h3 {
font-weight: 600;
font-size: 27px;
color: rgb(63, 58, 58);
margin-bottom: 7px;
}
.col p {
margin-top: 0;
color: rgb(78, 75, 75);
text-align: center;
}
a {
text-align: center;
font-size: 20px;
color: black;
text-decoration-color: rgb(214, 186, 29);
}
a div {
color: rgb(44, 42, 42);
}
a:hover {
text-decoration-color: rgb(231, 151, 30);
}
@media (max-width:800px) {
.row {
flex-direction: column;
}
}
</style>
</head>
<body>
<!-- heading -->
<h2> Why Students Prefer Us</h2>
<!-- first row -->
<div class="row">
<div class="col">
<img src="https://notestwowaits.s3.us-east-1.amazonaws.com/notes/icon_price_tag.png" height="100px" />
<h3>Ridiculously Low Pricing</h3>
<p>We charge too low so that every student can afford it</p>
</div>
<div class="col">
<img src="https://notestwowaits.s3.us-east-1.amazonaws.com/notes/icon_we_care.png" height="100px" />
<h3>We Care</h3>
<p>We push students to learn and guide them if they loose focus</p>
</div>
<div class="col">
<img src="https://notestwowaits.s3.us-east-1.amazonaws.com/notes/icon_mentor_learning.png" height="100px" />
<h3>Doubts Support</h3>
<p>Stuck in project, our mentors are there to guide you</p>
</div>
</div>
<!-- second row -->
<div class="row">
<div class="col">
<img src="https://notestwowaits.s3.us-east-1.amazonaws.com/notes/icon_curated.png" height="100px" />
<h3>Curated Content</h3>
<p>Only relevant skills taught, carefully curated content by experts </p>
</div>
<div class="col">
<img src="https://notestwowaits.s3.us-east-1.amazonaws.com/notes/icon_job.png" height="100px" />
<h3> Relevant to Career</h3>
<p> Skills taught by us will help you land jobs/internships in top companies</p>
</div>
</div>
<!-- last line -->
<a href="https://medium.com/twowaits/our-dream-and-dream-of-billion-indians-the-why-of-twowaits-e45301383d6">
<div>Read about our Mission and Vision here!</div>
</a>
</body>
</html>