-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (73 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./formstyles.css">
<link rel="stylesheet" href="./styles.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Open+Sans&display=swap" rel="stylesheet">
<title>Symptom </title>
</head>
<body>
<header>
<div class="header-row">
<a href="./index.html">
<div class="logo">
<img src="./images/logo.svg" alt="Symptor Checker Icon">
<h1>QuickCheck</h1>
</div>
</a>
<ul>
<li class="underline"><a href="./index.html">Home</a></li>
<li><a href="./takeTheTest.html">Take the Test</a></li>
</ul>
</div>
</header>
<section class="hero full-screen-width">
<div class="text-area">
<p>QuickCheck is an online symptom checker that allows users to receive a preliminary diagnosis,
based on the symptoms they report from the comfort of their home.</p>
<div class="button-area">
<a href="./takeTheTest.html">
<div class="btn-grey">
Take the test <img src="./images/arrow.svg" alt="Right Arrow">
</div>
</a>
</div>
</div>
<div class="image-area">
<img src="./images/homeImage.svg" alt="Home Image">
</div>
</section>
<section class="cards-section full-screen-width">
<div class="card">
<img src="./images/free.svg" alt="Free">
<div class="text">
<h2>Free</h2>
<p>QuickCheck cares about you. That’s why our service is free!</p>
</div>
</div>
<div class="card">
<img src="./images/accessible.svg" alt="Free">
<div class="text">
<h2>Accessible</h2>
<p>QuickCheck is accessible to everyone all over the world!</p>
</div>
</div>
<div class="card">
<img src="./images/easyToUse.svg" alt="Free">
<div class="text">
<h2>Easy To Use</h2>
<p>QuickCheck software is intuitive and simple to use. Take the test to find out!</p>
</div>
</div>
</section>
<p class="disclaimer" style="color: #999;">Diclaimer: This is not real medical advice. Please contact a professional
doctor for a proper
diagnosis </p>
<footer>
<p>Made with <img src="./images/heart.svg" alt="Free"> at DubHacks</p>
</footer>
</body>
</html>