-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.html
40 lines (40 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NovaSystem</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #2c3e50;
}
</style>
</head>
<body>
<header>
<h1>Welcome to NovaSystem</h1>
</header>
<main>
<p>NovaSystem is an innovative platform designed to revolutionize your workflow.</p>
<h2>Key Features:</h2>
<ul>
<li>Advanced AI integration</li>
<li>Seamless cloud synchronization</li>
<li>Intuitive user interface</li>
<li>Robust security measures</li>
</ul>
<p>Stay tuned for more updates as we continue to develop and improve NovaSystem!</p>
</main>
<footer>
<p>© 2024 NovaSystem. All rights reserved.</p>
</footer>
</body>
</html>