-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrontEnd_HTML.html
129 lines (124 loc) · 5.17 KB
/
FrontEnd_HTML.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Nutriguide</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="normalize.css" />
<link rel="stylesheet" type="text/css" media="screen" href="skeleton.css" />
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<div id="modal">
<div id="modal-cont">
<video width="800" height="500" controls>
<source src="C://Users/Ashna Verma/Downloads/New folder (5)/WE ARE BACK.mp4" type="video/mp4"> Your browser does not support the video tag.
</video>
<div id="close">✕</div>
</div>
</div>
<header>
<div class="container">
<nav class="navbar flex">
<div class="left">
<span class="navbar-logo">Nutriguide</span>
</div>
<div class="right navbar-right">
<ul class="navbar-links">
<li>
<a href="#features-scrollto">Features</a>
</li>
<li>
<a href="#how-scrollto">How It Works</a>
</li>
<li>
<a href="#how-scrollto">Application</a>
</li>
<li>
<div id="watch" class="navbar-c2a button">Watch the Video</div>
</li>
</ul>
</div>
</nav>
<div class="flex">
<div class="left">
<div class="splash-image">
<img src="C://Users/Ashna Verma/Downloads/New folder (5)/nutriguide.png" alt="">
</div>
</div>
<div class="right splash-right">
<h1>Your own PCOS detection application & recommendation system</h1>
<p>This helps in detecting patients with pcos from their medical stats and suggesting diets suitable for their body</p>
<img class="download-app-store" src="C://Users/Ashna Verma/Downloads/New folder (5)/1_img.png">
</div>
</div>
</div>
<div class="flairbox"></div>
</header>
<section id="how-scrollto" class="how-section">
<div class="container">
<h2>How It Works</h2>
<div class="cards flex">
<div class="card">
<b>1.</b>
<br> Data obtained through kaggle and feature selection was done
</div>
<div class="card">
<b>2.</b>
<br>Machine learning models were implemented
</div>
<div class="card">
<b>3.</b>
<br>The user gives the input value and our model runs
</div>
<div class="card">
<b>4.</b>
<br>Returns the results and identifies pcos in a patient
</div>
</div>
</div>
</section>
<section id="features-scrollto" class="why-section">
<div class="container flex">
<div class="left">
<h2>Features</h2>
<div class="feature">
<h2>PCOS DETECTION</h2>
<p>This application helps in the detection of pcos</p>
</div>
<div class="feature">
<h2>Diet recommendation</h2>
<p>get the suitable diet needed for your body according to the results </p>
</div>
<div class="feature">
<h2>Easy to use</h2>
<p>The application is user friendly. </p>
</div>
</div>
<div class="right">
<div class="splash-image1">
<img class="splash-image1" src="C://Users/Ashna Verma/Downloads/New folder (5)/2_img.jpeg" alt="">
</div>
</div>
</div>
</section>
<section class="get-started flex">
<h2>Sold?</h2>
<div class="button">Get Started</div>
</section>
<section class="credit">
<div class="container">
<p>
<b style="margin-right: 30px">Nutriguide</b>
<span style="margin-right: 10px">Contact</span>
<span style="margin-right: 10px">About</span>
<span style="margin-right: 10px">Privacy Policy</span>
<span style="margin-right: 10px">Terms of Service</span>
</p>
</div>
</section>
<script src="main.js"></script>
</body>
</html>