-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
151 lines (140 loc) · 5.02 KB
/
products.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!--
index.html
Copyright 2024 tharun <tharun@Vostro-15-3568>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>GenAI | Products</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="generator" content="Geany 2.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav class="navbar">
<a class="navbar__logo" href="index.html">GenAI</a>
<ul class="navbar__links">
<li><a class="navbar__link" href="index.html">Home</a></li>
<li><a class="navbar__link currentPage" href="products.html">Products</a></li>
<li><a class="navbar__link" href="contact.html">Contact</a></li>
</ul>
<a class="btn-primary" href="#">Create an account</a>
</nav>
<section class="hero hero__products">
<div>
<h1 class="hero__title">GenAI 5o Mini: Smart and efficient</h1>
<h2 class="hero__text">The new model which is both lightweight and faster compared to the previous generations</h2>
</div>
</section>
</header>
<main>
<section class="section">
<h2 class="section__title">Our models</h2>
<div class="models">
<div class="model red">
<h2>Mini</h2>
</div>
<div class="model blue">
<h2>Basic</h2>
</div>
<div class="model cyan">
<h2>Plus</h2>
</div>
</div>
</section>
<section class="section section-imp feat" style="background: whitesmoke">
<h2 class="section__title">What's new in GenAI 5o Mini</h2>
<div class="tabs">
<a class="tab activeTab" href="#">Faster answers</a>
<a class="tab" href="#">Advanced and complex queries</a>
<a class="tab" href="#">Easy to use</a>
</div>
<div class="img-center">
<img class="section__img" src="img/imp-img-1.png"/>
</div>
<div class="btn-center">
<a class="btn-primary" href="#">Start a chat now</a>
<a class="btn-secondary" href="#">Learn more</a>
</div>
</section>
<section class="section">
<div class="section__cols">
<article>
<h2 class="section__title">Works seamlessly. Everywhere.</h2>
<p class="section__text">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</p>
</article>
<div class="img-center">
<img class="section__img" src="img/Mobile_Download.webp" />
</div>
</div>
</section>
<section class="section download">
<div class="download-box">
<h2 class="section__title">Join millions of other users today. For free.</h2>
<div class="btn-center">
<a class="btn-primary" href="#">Start a chat now</a>
<a class="btn-secondary" href="#">Download client</a>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__cols">
<section>
<h3>Company</h3>
<ul class="footer__links">
<a class="footer__link" href="#">Security</a>
<a class="footer__link" href="#">About us</a>
<a class="footer__link" href="#">Contact us</a>
<a class="footer__link" href="#">Products</a>
</ul>
</section>
<section>
<h3>Company</h3>
<ul class="footer__links">
<a class="footer__link" href="#">Security</a>
<a class="footer__link" href="#">About us</a>
<a class="footer__link" href="#">Contact us</a>
<a class="footer__link" href="#">Products</a>
</ul>
</section>
<section>
<h3>Company</h3>
<ul class="footer__links">
<a class="footer__link" href="#">Security</a>
<a class="footer__link" href="#">About us</a>
<a class="footer__link" href="#">Contact us</a>
<a class="footer__link" href="#">Products</a>
</ul>
</section>
<section>
<h3>Company</h3>
<ul class="footer__links">
<a class="footer__link" href="#">Security</a>
<a class="footer__link" href="#">About us</a>
<a class="footer__link" href="#">Contact us</a>
<a class="footer__link" href="#">Products</a>
</ul>
</section>
</div>
<div class="footer__siteCols">
<p>GenAI © 2012 - 2024</p>
<strong>All systems operational.</strong>
</div>
</footer>
</body>
</html>