-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (34 loc) · 1.26 KB
/
index.html
File metadata and controls
40 lines (34 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Precept</title>
<style>
body { font-family: Arial, sans-serif; padding: 20px; }
.bold { font-weight: bold; }
.underline { text-decoration: underline; }
.button {
display: inline-block;
background-color: #007bff;
color: white;
padding: 10px 20px;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
margin-top: 20px;
}
</style>
</head>
<body>
<img src="logo.jpg" alt="Precept Logo" width="150px">
<h1>PRECEPT</h1>
<p>Precept is the leading AI-driven integration platform, unlocking personalized experiences while eliminating the need for costly integrations across third-party applications.</p>
<p class="bold">
Precept solves for the <span class="underline">prohibitive cost</span>,
<span class="underline">eliminates Development resources</span> and the
<span class="underline">valuable time</span> lost when building third-party integrations.
</p>
<a href="mailto:info@precept.sh" class="button">Contact</a>
</body>
</html>