forked from CosmicAnty/cosmicanty.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (150 loc) · 5.15 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
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="bundle.js" defer></script>
<link
rel="icon"
type="image/svg+xml"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22256%22 height=%22256%22 viewBox=%220 0 100 100%22><rect width=%22100%22 height=%22100%22 rx=%2250%22 fill=%22%23ffc438%22></rect><text x=%2250%%22 y=%2250%%22 dominant-baseline=%22central%22 text-anchor=%22middle%22 font-size=%2290%22>🚀</text></svg>"
/>
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="styles.css" />
<title>Maths Functions</title>
</head>
<body>
<nav class="navbar">
<a download="Cute Cat.png" href="Images/Cute_Grey_Cat_Edited.png">
<img
class="logo"
src="Images/Cute_Grey_Cat_Edited.png"
alt="Cute cat logo"
/>
</a>
<div class="brand-title">
<a href="index.html">Maths Functions</a>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
<span class="bar-contact"></span>
</a>
<div class="navbar-links">
<ul class="navbar-links-ul">
<!-- <li><a href="#">Home</a></li> -->
<li><a class="about-link" href="About/index.html">About</a></li>
<li class="project-button">
<a class="project-link" href="#">Projects</a>
<div class="projects">
<ul>
<li>
<a class="sub-link" href="Projects/GTP-3 API/index.html"
>GTP-3 API</a
>
</li>
<li>
<a class="sub-link" href="Projects/Weather API/index.html"
>Weather API</a
>
</li>
<li>
<a class="sub-link" href="Projects/Location API/index.html"
>Location API</a
>
</li>
<li>
<a
class="sub-link"
href="Projects/Quizlet Revision/index.html"
>Quizlet Revision</a
>
</li>
<li>
<a
class="sub-link"
href="Projects/Quadratic Solver/index.html"
>Quadratic Solver</a
>
</li>
<li>
<a
class="sub-link"
href="Projects/Prime Number Checker/index.html"
>Prime Number Checker</a
>
</li>
<!-- <li>
<a class="sub-link" href="../Coming Soon/index.html"
>COMING SOON</a
>
</li> -->
<!-- <li><a class="sub-link" href="#">Project 3</a></li>
<li><a class="sub-link" href="#">Project 4</a></li> -->
</ul>
</div>
</li>
<li>
<a class="contact" href="Contact/index.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="card-1">
<h2 class="counter-header">Counter</h2>
<p class="counter" id="par">1</p>
<ul class="buttons">
<button id="add" class="counter-button">Increase by 1</button>
<button id="reset" class="counter-button">Reset</button>
<button id="minus" class="counter-button">Decrease by 1</button>
</ul>
</div>
<div class="card-2">
<h2>GTP-3 API</h2>
<p class="text">
This is a function which uses the OPENAI GTP-3 API to create human-like
text from a prompt. <br /><br />
E.g. Write a description about how amazing this website is.<br /><br />
Press enter to submit the prompt.
</p>
<input placeholder="Prompt" id="prompt" type="text" />
<h3>Output</h3>
<p id="output" class="text">This is where the output will be...</p>
</div>
<div class="card-3"></div>
<div class="footer">
<ul class="footer-links">
<li><a href="About/index.html">About</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="Contact/index.html">Contact</a></li>
</ul>
</div>
<ul class="copyright-footer">
<li>
©
<a
class="secretLink"
href="https://replit.com/@CosmicAnty"
target="_blank"
>Cosmic</a
>
<a
class="secretLink"
href="https://replit.com/@CosmicAnty/Python-Files?v=1"
target="_blank"
>Anty</a
>
</li>
<li>
Published on
<a
class="secretLink"
href="https://github.com/CosmicAnty/Maths-Functions"
target="_blank"
>Github</a
>
</li>
</ul>
</body>
</html>