-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.91 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./assets/css/style.css">
<title>C.R.U.D.</title>
<meta name="description" content="Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam, ipsa vel adipisci eveniet nihil velit beatae, dolore ducimus iste blanditiis reprehenderit? Officiis dolorum similique totam repudiandae dolore necessitatibus quis sed.">
</head>
<body>
<div id="whole-page">
<header>
<h1>CRUD</h1>
</header>
<main>
<div class="gutter"></div>
<div id="displayCard">
<div id="cardHeader">
<div id="cardTitle"></div>
<div id="cardTime">
<p id="cardTimeTitle"></p>
<p id="cardTimeValue"></p>
</div>
</div>
<div id="cardBody">
<p id="bodyParagraph"></p>
<ul id="cardUl"></ul>
</div>
<div id="cardFooter">
<p id="footerParagraph"></p>
</div>
</div>
<div class="gutter"></div>
</main>
<footer>
<div id="start-stop-buttons">
<button class="btn" type="button" id="start-btn">START</button>
<button class="btn" type="button" id="stop-btn">STOP</button>
</div>
<img src="./assets/images/toroid.png" alt="A drawing of a red and blue horseshoe magnet with lines tracing the direction of the magnetic flux from each pole which evoke the legs of a spider">
</footer>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>