-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>SCARSAI</title>
<meta name="description" content="description here">
<meta name="keywords" content="Key words here">
<meta name="author" content="Deven Dangi, Alex Srivastava">
<link rel="icon" type="image/x-icon" href="/public/logo.png">
<!-- META TAGS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffdac2">
<meta charset="UTF-8">
<!-- CSS LINK -->
<link href="css/landing.css" rel="stylesheet"/>
<!--FONT LINK-->
<link href="https://api.fontshare.com/v2/css?f[]=general-sans@500,401&display=swap" rel="stylesheet">
</head>
<body>
<main id="landing-text">
<h1 id="title">
Scars<span style="color: orange;">AI</span>
</h1>
<h3 id="subtitle">
The Skin Cancer Automatic Recognition System, a CNN image classification model created with to classify images of moles into either benign or malignant skin cancer.
</h3>
<div id="button-row">
<a class="button" id="main-button" href="detection">Classify ↗</a>
<a class="button" id="sub-button" href="FAQ">Learn ↗</a>
</div>
</main>
<img id="img" src="public/logo.png">
<!-- JS Links -->
<script src="js/landing.js"></script>
<script src="js/nav.js"></script>
</body>
</html>