This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (51 loc) · 1.84 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="shortcut icon" href="#" />
<title>Protagonist Producer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Archivo:wght@700&family=Archivo:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<img src="./images/logo.png">
<a href="/">Protagonist Producer</a>
</header>
<main>
<!-- The Setup -->
<section id="setup-container">
<div class="setup-inner">
<div class="speech-bubble-ai" id="speech-bubble-ai">
<p id="intro-text">
Create your own character, complete with a portrait and a synopsis / backstory.
<br><br>Give a brief description of your character. Include any details you want included in the
portrait and backstory of the character.
<br><br> You can also include genre, setting and inspirations.
</p>
</div>
</div>
<div class="setup-inner setup-input-container" id="setup-input-container">
<textarea id="setup-textarea" placeholder="Character description"></textarea>
<button class="send-btn" id="send-btn" aria-label="send">
<img src="images/send.png">
</button>
</div>
</section>
<!-- The Output -->
<section class="output-container" id="output-container">
<div id="output-img-container" class="output-img-container"></div>
<h1 id="output-title"></h1>
<p id="output-text"></p>
</section>
</main>
<footer>
Sachith C Shetty - <a href="https://github.com/ShettySach">GitHub</a>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>