-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.html
35 lines (35 loc) · 1.19 KB
/
history.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>History Magic Form</title>
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<a href="index.html" id="form-link">Form</a>
<a href="history.html" id="history-link">History</a>
</nav>
</header>
<div class="submit-history-cards">
<div class="submit-history-card">
<p class="card-label">First Name</p>
<p class="card-first-name">Monica</p>
<p class="card-label">Last Name</p>
<p class="card-last-name">Meyers</p>
<p class="card-label">Email</p>
<p class="card-email">test@gmail.com</p>
<p class="card-label">Phone</p>
<p class="card-phone">12345678</p>
<p class="card-label">Company</p>
<p class="card-company">Hyperskill</p>
<p class="card-label">Address</p>
<p class="card-address">4733 Reppert Coal Road, Southfield, Michigan</p>
<button class="delete-button">Delete</button>
</div>
</div>
</body>
</html>