-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathluckyNumber.html
More file actions
41 lines (36 loc) · 1.3 KB
/
luckyNumber.html
File metadata and controls
41 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta lang="eng">
<title>Need some advice?</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="luckyNumberStyles.css">
</head>
<body>
<header>
<h1 class="header">Do you need some advice?</h1>
</header>
<main class="advice-section">
<div class="mainContainer">
<div class="theCard">
<div class="theCardFront">
<img src="assets/images/sunset.png" class="sunLight">
<img src="assets/images/sunset_light.png" class="sunDark">
</div>
<div class="theCardBack advice"></div>
</div>
</div>
<div class="form-container">
<form action="#">
<label for="luckyNumber">Enter your lucky number below to get advice</label> <br>
<input type="number" name="luckyNumber" id="luckyNumber">
</form>
</div>
<button class="advice-button" type="button">Click here!</button>
<a href="index.html" class="bottom-link">Take me back.</a>
</main>
<script src="scripts/luckyNumberAdvice.js"></script>
</body>
</html>