-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.29 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<h1>Creating Elements</h1>
<h2>Templage Element</h1>
<!-- start template -->
<div class="card">
<div class="header">
<img class="avatar" src="https://i.pravatar.cc/40?img=3" alt="">
<span class="profileName">John Doe</span>
</div>
<div class="message">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nulla eos at cumque rerum consequuntur. Dolores itaque recusandae eligendi eum? Maiores quibusdam aliquam odio, sequi aliquid eum! Maiores ea porro esse.
</div>
</div>
<!-- end template -->
<h2>Dynmaic Element</h1>
<div id="singleItem">
<!-- single item will show up here -->
We will create this in class
</div>
<h2>Dynmaic Feed List</h1>
<div id="feedList">
<!-- add all new cards here -->
We will do this for homework
</div>
</div>
</body>
</html>