-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (78 loc) · 2.39 KB
/
index.html
File metadata and controls
89 lines (78 loc) · 2.39 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
<!DOCTYPE html>
<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" />
<link rel="icon" type="image/png" href="./assets/favicon.jpeg" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="./style.css" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="./app.js" defer></script>
<title>Szechuan Sauce</title>
</head>
<body>
<header>
<h1>Rick & Morty</h1>
<img src="./assets/rickAndMorty.png" alt="Rick & Morty" />
</header>
<section>
<ul id="all-characters">
<!-- <li id="photo-img">
<img src="" alt="" />
<p id="character-name"></p>
</li> -->
</ul>
</section>
<main>
<form>
<p>What would this character say about Jerry? </p>
<input type="text" name="" id="user-text" />
<input type="submit" value="Comment" />
</form>
<ul id="character-comments-ul">
<!-- APPEND THE USER'S COMMENTS HERE -->
</ul>
</main>
<!-- create using javascript -->
<!-- <main> ==> RED BOX WITH WHITE BORDER, DISPLAY FLEX, FLEX DIRECTION COLUMN
<section id="character-info">
<h3>CHARACTER'S NAME</h3>
<img src="" alt="">
<p> Status: Alive</p>
<p>Location: Earth (blah blah blah) </p>
</section> -->
<!-- **- - - - CHARACTER COMMENTS - - - -** -->
<!-- <section id="character-comments-section">
<form action=""> -->
<!-- USER ENTERS THEIR COMMENTS HERE -->
<!-- <input type="text" name="" id=""> -->
<!-- USER SUBMITS COMMENTS WITH THIS BUTTON -->
<!-- do not save the user's comment -->
<!-- <input type="submit" value="Comment"> -->
<!-- On submission the input should clear -->
<!-- </form>
<ul id="character-comments-ul"> -->
<!-- APPEND THE USER'S COMMENTS HERE -->
<!-- </ul>
</section>
</main> -->
</body>
</html>
<!--
<body>
<header>
<h1>Rick & Morty</h1>
<img src="./assets/rickAndMorty.png" alt="Rick & Morty" />
</header>
<ul id="character-comments-ul">
<main>
<section id="character-info">
<h3 id="character-name">CHARACTER'S NAME</h3>
<img id="character-img" src="" alt="">
<p> Status: Alive</p>
<p>Location: Earth (blah blah blah) </p>
</section>
</main>
</body>
-->