-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.97 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 2.97 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
<html>
<head>
<title>Welcome | promptc.dev</title>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<style>
.container {
position: relative;
background-color: rgb(251,251,242);
font-family: 'Poppins', sans-serif;
text-align: center;
}
.center {
margin: 0;
position: relative;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 95%;
height: 90%;
border: 4px solid rgb(100,144,201);
}
.content {
margin: 0;
position: relative;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 50%;
color: rgb(100,144,201);
}
.button {
background-color: rgb(251,251,242);
border: 2px solid rgb(100,144,201);
color: rgb(100,144,201);
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
transition-duration: 0.4s;
}
.button:hover {
background-color: rgb(100,144,201);
color: white;
}
hr {
border: 0.5px solid rgb(100,144,201);
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body class="container">
<div class="center">
<div class="content">
<h1 style="text-decoration: underline;" >promptc</h1>
<p style="color:black">Build <span style="font-style: italic;">Next generation Prompt standard</span></p>
<div style="display: flex; align-items: center;justify-content: center;">
<button class="button" onclick="window.location.href='https://github.com/promptc/pot';" style="width: 100px; height: 40px;">pot</button>
<button class="button" onclick="window.location.href='https://github.com/promptc/promptc-go';" style="width: 100px; height: 40px;">promptc-go</button>
<button class="button" onclick="window.location.href='https://github.com/promptc';" style="width: 100px; height: 40px;">GitHub</button>
</div>
<hr>
Copyright © 2023 promptc.dev
</div>
</div>
</body>
</html>