-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (119 loc) · 4.42 KB
/
index.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mindful Journey</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="./assets/girl_2.png" type="image/x-icon" />
</head>
<body>
<a name="home"></a>
<div class="nav">
<div class="branding">
<img src="./assets/girl_2.png" alt="girl" class="girl" />
<h1>Mindful<span class="stroke"> Journey</span></h1>
</div>
<div class="links">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#software">Software</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="./pages/feedback/feedback.html">Feedback</a></li>
<li><a href="./pages/login/login.html">Login</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="text">
<h1>Mental Health <br /><span class="stroke">Problems.</span></h1>
<p>
At Mindful Journey, we're here to help you navigate the complexities of
mental health. Our resources and support are designed to empower you
on your journey to well-being, providing understanding and practical
solutions for mental health challenges.
</p>
<button class="learn_more">
<a href="#software">Learn more.</a>
</button>
</div>
<div class="img"></div>
</div>
<!-- SOFTWARE PAGE -->
<a name="Software"></a>
<div class="software">
<div class="head">
<h1>Empowering Your <span class="stroke">Well-Being.</span></h1>
</div>
<div class="img">
<img src="./assets/software.svg" alt="" />
</div>
<div class="down_button">
<button class="download">
<a href="#home">Begin Using Our App →</a>
</button>
</div>
</div>
<!-- ABOUT US PAGE -->
<a name="about"></a>
<br /><br /><br />
<div class="about">
<div class="starter">
<h1>
<span class="stroke">Meet</span> our team of <i class="light">creators,</i><br /><i class="light">
designers</i
>
and world-class <br />
<i class="light">problem solvers.</i>
</h1>
<div class="img">
<img src="./assets/about-us.png" alt="" />
</div>
</div>
<br /><br />
<p class="about_text">
We are a team studying at
<b class="italic">Seth Anandram Jaipuria School, <i class="light">Varanasi</i></b
>, brought together by a shared passion <br />
for making a <b class="italic">positive impact</b> in our community. Our journey began with a
simple yet powerful idea: <br />to create a platform that provides
<b class="italic">valuable resources</b> and support to those seeking information,
<br />guidance, and inspiration related to <b class="italic">mental health.</b>
</p>
<div class="creators">
<div class="first_two">
<div class="kaveesh">
<img src="./assets/kaveesh-bg.png" alt="kaveesh" class="float-hover-one"/>
<div class="info">
<p class="name">Kaveesh Krishna Pandey</p>
<p class="class-name bg-yellow-color-black">10th A</p>
</div>
</div>
<div class="aditya">
<img src="./assets/aditya-bg.png" alt="aditya" class="float-hover-two"/>
<div class="info">
<p class="name">Aditya Yadav</p>
<p class="class-name bg-yellow-color-black">9th A</p>
</div>
</div>
</div>
<div class="last_two">
<div class="shrinjani">
<img src="./assets/shrinjani-bg.png" alt="shrinjani" class="float-hover-three"/>
<div class="info">
<p class="name">Shrinjani</p>
<p class="class-name bg-yellow-color-black">10th A</p>
</div>
</div>
<div class="anay">
<img src="./assets/anay-bg.png" alt="anay" class="float-hover-four"/>
<div class="info">
<p class="name">Anay</p>
<p class="class-name bg-yellow-color-black">10th A</p>
</div>
</div>
</div>
</div>
<br><br><br><br><br>
</div>
</body>
</html>