-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Playfair+Display+SC:wght@700&family=Poppins:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
<title>Movie Brain</title>
</head>
<body>
<header>
<img src="./images/movie.svg" alt="MovieLogo">
<a href="/"><span>Movie</span>Brain</a>
</header>
<main>
<!-- The Setup -->
<section id="setup-container">
<div class="setup-inner">
<img src="/images/person.svg">
<div class="speech-bubble-ai" id="speech-bubble-ai">
<p id="movie-boss-text">
Give me an idea and you will have an eye-catching title, a synopsis the studios will love, a
movie poster...
AND the cast!
</p>
</div>
</div>
<div class="setup-inner setup-input-container" id="setup-input-container">
<textarea id="setup-textarea" placeholder="AI will do the job."></textarea>
<button class="send-btn" id="send-btn" aria-label="send">
<img src="images/pointer.svg" alt="send">
</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>
<h2 id="output-stars"></h2>
<p id="output-text"></p>
</section>
</main>
<footer>
© 2023 MovieBrain All rights reserved
</footer>
<script type="module" src="index.js"></script>
</body>
</html>