-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (108 loc) · 3.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Querent AI</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #FBFCFD; /* Light background */
color: #020426; /* Dark text */
}
header, section {
margin-bottom: 40px;
}
h1, h2 {
color: #177FBF; /* Accent color for headings */
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #009688; /* Teal for links */
text-decoration: none;
}
nav ul li a:hover {
text-decoration: underline;
}
.content {
margin-top: 20px;
}
article {
background-color: #FFFFFF; /* White background for articles */
padding: 15px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.footer {
margin-top: 40px;
border-top: 1px solid #ccc;
padding-top: 20px;
color: #020426; /* Dark text for footer */
}
</style>
</head>
<body>
<header>
<h1>Querent AI</h1>
<nav>
<ul>
<li><a href="#case-studies">Case Studies</a></li>
<li><a href="#articles">Articles</a></li>
<li><a href="#papers">Papers</a></li>
<li><a href="#papers-code">Papers with Code</a></li>
</ul>
</nav>
</header>
<section id="case-studies">
<h2>Case Studies</h2>
<div class="content">
<!-- Add your case studies here -->
<article>
<h3>Case Study Title</h3>
<p>Description or Link to the case study</p>
</article>
</div>
</section>
<section id="articles">
<h2>Articles</h2>
<div class="content">
<!-- Add your articles here -->
<article>
<h3>Article Title</h3>
<p>Summary or Link to the article</p>
</article>
</div>
</section>
<section id="papers">
<h2>Research Publications</h2>
<div class="content">
<!-- Add your papers here -->
<article>
<h3>Paper Title</h3>
<p>Abstract or Link to the paper</p>
</article>
</div>
</section>
<section id="papers-code">
<h2>Papers with Code</h2>
<div class="content">
<!-- Add your papers with code here -->
<article>
<h3>Paper Title</h3>
<p>Abstract or Link to the paper and code repository</p>
</article>
</div>
</section>
<div class="footer">
<p>© 2024 Querent AI. All rights reserved.</p>
</div>
</body>
</html>