-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (98 loc) · 2.19 KB
/
index.html
File metadata and controls
111 lines (98 loc) · 2.19 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
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 content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
ChatGPT Prompts
</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Custom CSS -->
</head>
<body>
<!-- Hero Section -->
<section id="hero">
<div class="container">
<h1>
ChatGPT Prompts
</h1>
<p>
Learn to use ChatGPT correctly and efficiently
</p>
<a class="btn btn-primary" href="https://github.com/TrivCodez/chatgpt-prompts">
View on GitHub
</a>
</div>
</section>
<!-- Bootstrap & jQuery JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js">
</script>
</body>
</html>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(to right, #4e54c8, #8f94fb);
color: #fff;
}
.container {
padding: 80px 0;
text-align: center;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 24px;
margin-bottom: 40px;
}
.btn {
font-size: 20px;
padding: 10px 30px;
}
.btn-primary {
background-color: #fff;
color: #4e54c8;
border-color: #fff;
}
.btn-primary:hover {
background-color: #4e54c8;
color: #fff;
border-color: #4e54c8;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(to right, #4e54c8, #8f94fb);
color: #fff;
}
.container {
padding: 80px 0;
text-align: center;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 24px;
margin-bottom: 40px;
}
.btn {
font-size: 20px;
padding: 10px 30px;
}
.btn-primary {
background-color: #fff;
color: #4e54c8;
border-color: #fff;
}
.btn-primary:hover {
background-color: #4e54c8;
color: #fff;
border-color: #4e54c8;
}
</style>