-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.html
33 lines (30 loc) · 1.3 KB
/
results.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
<!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">
<meta name="author" content="Adam Mann">
<link rel="icon" type="image/png" href="./favicon_io/favicon.ico" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@700;900&family=Montserrat:wght@700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Name Diviner | Results</title>
</head>
<body class="results-body">
<main class="results-main">
<h2 class="results-main__main-heading"><u class="results-main--underline">Results</u>
</h2>
<h3 class="results-main__result-heading">Nationality</h3>
<p class="results-main__result-text" id="nationality"></p>
<h3 class="results-main__result-heading">Age</h3>
<p class="results-main__result-text" id="age"></p>
<h3 class="results-main__result-heading">Last Name Origin</h3>
<p class="results-main__result-text" id="name-origin"></p>
<a class="results-main__button-link results-main__button index-main--white-link" href="entry.html">Enter Another
Name</a>
</main>
</body>
<script type="module" src="./js/results.js"></script>
</html>