-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (116 loc) · 4.32 KB
/
index.html
File metadata and controls
128 lines (116 loc) · 4.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clinical Trials AI</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.custom-dark-blue { background-color: #003366; }
.custom-dark-blue-text { color: #003366 !important; }
.centered-content { max-width: 800px; margin: auto; }
footer { background-color: #003366; color: white; padding: 20px 0; width: 100%; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.upload-image { width: 50%; height: auto; max-height: 200px; display: block; margin: 0 auto 20px; }
.how-to-section { margin-top: 50px; }
.how-to-card {
transition: transform 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 10px;
text-align: center;
background-color: #fff;
}
.how-to-card:hover {
transform: scale(1.1);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.how-to-card h4 {
font-weight: bold;
color: #003366;
}
.how-to-card p {
margin-top: 10px;
color: #555;
}
.how-to-card img {
width: 60px;
height: 60px;
margin-bottom: 10px;
}
/* Button Animation */
.start-button {
display: inline-block;
padding: 15px 30px;
font-size: 20px;
font-weight: bold;
text-align: center;
background-color: #569ae2;
color: white;
border-radius: 10px;
text-decoration: none;
transition: transform 0.3s, background-color 0.3s;
}
.start-button:hover {
transform: scale(1.2);
background-color: #3766cc;
}
.start-button:active {
transform: scale(1.1);
}
</style>
</head>
<body>
<header class="p-3 text-white custom-dark-blue">
<div class="container">
<h2 class="text-white text-center">Clinical Trials AI</h2>
</div>
</header>
<div class="container py-5">
<!-- Photo Section -->
<div class="mb-4 text-center">
<img src="MNC-Pharma-companies-in-India (1).jpg" alt="Clinical Trials" class="upload-image">
</div>
<!-- How to Use Section -->
<div class="container how-to-section">
<h2 class="custom-dark-blue-text mb-4 text-center">How to Use</h2>
<div class="row g-4">
<!-- Step 1 -->
<div class="col-md-4">
<div class="how-to-card">
<img src="icon1.jpg" alt="Step 1 Icon">
<h4>Upload Documents</h4>
<p>Upload your specific PDF/CSV file containing the patient requirements for the volunteers and the dataset of the volunteers.</p>
</div>
</div>
<!-- Step 2 -->
<div class="col-md-4">
<div class="how-to-card">
<img src="icon2.jpg" alt="Step 2 Icon">
<h4>Submitting the Document</h4>
<p>Submit the selected document. If more than one needs to be submitted, upload it again by clicking "Browse files."</p>
</div>
</div>
<!-- Step 3 -->
<div class="col-md-4">
<div class="how-to-card">
<img src="icon3.jpg" alt="Step 3 Icon">
<h4>Ask Questions</h4>
<p>Write your questions in the search bar and click enter.</p>
</div>
</div>
</div>
</div>
<!-- Start Button (Hyperlinked to Streamlit App) -->
<div class="text-center mt-5">
<a href="https://ishaan000999-pb9qvwjtdda7wdeqctz4fd.streamlit.app/" target="_blank" class="start-button">Start AI Assistant</a>
</div>
</div>
<footer>
<div class="container text-center">
<p>© 2024 Clinical Trials AI. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>