-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
57 lines (51 loc) · 1.73 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RAD</title>
<link rel="shortcut icon" type="image/png" href="./assets/favicon.png"/>
<link rel="stylesheet" href="./styles/index.css"/>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<!--header-->
<div class="universal_container">
<header>
<img class="header_image" src="./assets/header_logo.png">
</header>
<!--body content wrapper-->
<div class="main_content">
<!--welcome text-->
<div class="welcome_container">
<h1 class="primary_text">
Welcome to RAD
</h1>
<h4 class="info secondary_text">
RAD detects musculoskeletal abnormalities in x-rays of elbow, finger, forearm, hand, humerus, shoulder,
and
wrist.
</h4>
</div>
<!--login button-->
<a class="button rectangle_button blue_button button_shadow button_small" href = "auth/index.php">
Log in
</a>
<div class="more_about_project_container">
<div class="card card_touchable">
<div class="card_image_container" style = "background-color:#FFB100">
<img src="./assets/header_logo.png" class="card_image">
</div>
<div class = "card_text_container">
<h3>
Take a tour
</h3>
<h4 class="secondary_text sub_info">
To use RAD more efficiently and with ease, take a tour.
</h4>
</div>
</div>
</div>
</div>
</div>
</body>
</html>