-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
49 lines (45 loc) · 1.36 KB
/
Copy pathindex2.html
File metadata and controls
49 lines (45 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning HTML</title>
<link rel="shortcut icon" href="./png/html_logo.png">
<link rel="stylesheet" href="./css/style2.css">
</head>
<body>
<nav>
<a href="./index.html">Return</a>
</nav>
<header>
<h1>Second page !</h1>
</header>
<main>
<div class="flexbox">
<h2>Flexbox</h2>
<ul>
<li>Object 1</li>
<li>Object 2</li>
<li>Object 3</li>
</ul>
</div>
<div class="grid">
<h2>Grid</h2>
<div class="grid-container">
<img src="./png/White_Girl.png" alt="White_Girl">
<form action="">
<input type="text" id="firstname" placeholder="Firstname">
<input type="text" id="surname" placeholder="Surname">
<textarea cols="30" rows="10" placeholder="Your message"></textarea>
<input type="submit" value="Submit" id="btn-submit">
</form>
</div>
</div>
<div class="absolute">
<h2>Absolute</h2>
<span id="circle1"></span>
<span id="circle2"></span>
</div>
</main>
</body>
</html>