-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 833 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 833 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/assets/favicon.png">
<title>Ada Lovelace</title>
<link rel="stylesheet" href="style.css">
</head>
<style>
.adaImage {
width: 300px;
height: 400px;
object-fit: cover;
box-shadow: 3px 3px 4px 2px rgba(0,0,0,.6);
border-radius: 5px;
}
</style>
<body>
<div class="container">
<h1>ada lovelace</h1>
<h2><i>A Learning Module</i></h2>
<img class="adaImage" src="./assets/ada_lovelace.jpg" alt="Ada Lovelace">
<div class="next-button" onclick="window.location.href='adasummary.html'">
<div class="button-text">start ></div>
</div>
</div>
</body>