-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjourney.html
179 lines (164 loc) · 5.28 KB
/
journey.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<!-- All Meta Information -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="Pregnancy Guide Website" />
<meta
name="keywords"
content="PregEdu, Pregnancy Guide Web App, Pregnancy Blogs, Pregnancy Cycle, Pregnancy Report Check"
/>
<meta
name="author"
content="Bharti Kumari, Diya Vijay, Shubhanshu Sharma"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Page Title -->
<title>PregEdu</title>
<!-- Favicon Icon -->
<link rel="icon" type="image/x-icon" href="assets/favicon.png" />
<!-- Google Font Style -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!-- Google Icon -->
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
rel="stylesheet"
/>
<!-- Fontawesome Icon -->
<script
defer
src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"
integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc"
crossorigin="anonymous"
></script>
<!-- External CSS -->
<link rel="stylesheet" type="text/css" href="dist/css/main.css" />
<!-- External JS -->
<script src="dist/js/main.js"></script>
<!-- Head Closing -->
</head>
<body>
<!-- Main Body -->
<!-- Header -->
<header>
<!-- Navbar Starts-->
<nav>
<input type="checkbox" id="check" />
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">PregEdu</label>
<ul class="nav-item">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="schemes.html">Schemes</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<!-- Navbar Closing-->
</header>
<!-- Header Closing -->
<!-- Main Starting-->
<main class="main-heading">
<h1 class="content-heading">Journey of 9 Months</h1>
</main>
<!-- Main Closing-->
<div id="first-five-month">
<div class="image-row image-3d">
<img src="assets/months-journey/Month1.png" alt="Image 1">
<img src="assets/months-journey/Month2.png" alt="Image 2">
<img src="assets/months-journey/Month3.png" alt="Image 3">
<img src="assets/months-journey/Month4.png" alt="Image 4">
<img src="assets/months-journey/Month5.png" alt="Image 5">
</div>
<div class="button-row">
<button
onclick="window.location.href = 'first-month.html';"
class="month-button"
>
1st Month
</button>
<button
onclick="window.location.href = 'second-month.html';"
class="month-button"
>
2nd Month
</button>
<button
onclick="window.location.href = 'third-month.html';"
class="month-button"
>
3rd Month
</button>
<button
onclick="window.location.href = 'fourth-month.html';"
class="month-button"
>
4th Month
</button>
<button
onclick="window.location.href = 'fifth-month.html';"
class="month-button"
>
5th Month
</button>
</div>
</div>
<div id="last-five-month">
<div class="image-row">
<img src="assets/months-journey/Little-baby.png" alt="Image 1">
<img src="assets/months-journey/Month9.png" alt="Image 2">
<img src="assets/months-journey/Month8.png" alt="Image 3">
<img src="assets/months-journey/Month7.png" alt="Image 4">
<img src="assets/months-journey/Month6.png" alt="Image 5">
</div>
<div class="button-row">
<button
onclick="window.location.href = 'after-month.html';"
class="month-button"
>
After the Birth
</button>
<button
onclick="window.location.href = 'ninth-month.html';"
class="month-button"
>
9th Month
</button>
<button
onclick="window.location.href = 'eighth-month.html';"
class="month-button"
>
8th Month
</button>
<button
onclick="window.location.href = 'seventh-month.html';"
class="month-button"
>
7th Month
</button>
<button
onclick="window.location.href = 'sixth-month.html';"
class="month-button"
>
6th Month
</button>
</div>
</div>
<!-- Body Closing -->
</body>
<!-- HTML Closing -->
</html>