-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (88 loc) · 4.41 KB
/
index.html
File metadata and controls
146 lines (88 loc) · 4.41 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
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
<!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">
<title>Moon Walkers</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="{{url_for("static",filename="css/style.css")}}">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo">Moon Walkers.</a>
<div id="menu-btn" class="fas fa-bars"></div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>Lunar Sample Detection</h3>
<p>We have build machine learning solution where it studies the difference of the lunar samples .</p>
<!-- <a href="#" class="btn">try for free</a> -->
</div>
<div class="image">
<img src="{{"static",filename="images/rocket.svg"}}" alt="">
</div>
<div class="cloud cloud-1"></div>
<div class="cloud cloud-2"></div>
</section>
<!-- home section ends -->
<!-- services section starts -->
<section class="services" id="services">
<h1 class="heading"> Our <span>System</span> </h1>
<div class="box-container">
<div class="box">
<img src="images\landscape.jpg" alt="">
<h3>Segmentation</h3>
<p>Segmentation of the landscape by identifying areas of interest</p>
<a href="#" class="btn">learn more</a>
</div>
<div class="box">
<img src="images/s-2.png" alt="">
<h3>Analyse</h3>
<p>Analyse the sample using onboard instruments </p>
<a href="#" class="btn">learn more</a>
</div>
<div class="box">
<img src="images/s-3.png" alt="">
<h3>Final Implementation</h3>
<p>passing these the ML algorithm which will return the type of mineral so that we can consider whether or not to include it.</p>
<a href="#" class="btn">learn more</a>
</div>
</div>
</section>
<!-- services section ends -->
<!-- about section starts -->
<section class="about" id="about">
<!-- <h1 class="heading"> <span>about</span> us </h1> -->
<div class="row">
<div class="image">
<img src="images\ny_mars-rover.png" alt="">
</div>
<div class="content">
<h3 class="title">View Segmentation Analysis</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Alias blanditiis, fugiat consequatur enim
amet ullam facere quaerat, quos quae mollitia inventore! Hic, excepturi debitis velit maxime ut in
at iusto.</p>
<!-- <a href="#" class="btn">learn more</a> -->
<form method="post" action="{{url_for('upload')}}" enctype="multipart/form-data">
<input class="btn" type="file" name="file" autocomplete="off" required>
<input class="btn" type="submit" value="Submit" >
</form>
<!-- </p>
<input type="text" name="temp" class="form-control" placeholder="Enter Transection ID:"
aria-label="Humidity" aria-describedby="button-addon2">
<button class="btn btn-primary" style="margin: 10px;" type="submit" id="button-addon2">Enter
</button>
<button type="submit" class="btn btn-primary">Enter</button> -->
</div>
</div>
</section>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>