-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
79 lines (68 loc) · 1.52 KB
/
start.html
File metadata and controls
79 lines (68 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="it">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>HTML Lesson</title>
<style>
header {
border: 2px solid red;
}
main {
border: 2px solid black;
}
section {
border: 1px solid grey;
}
footer {
border: 2px solid green;
}
</style>
</head>
<body>
<header>
<h1>DEVELHOPE</h1>
<br />
<h2>ACADEMY</h2>
</header>
<aside>
<ul>
<li>Link 1</li>
<li>Link 2</li>
<li>Link 3</li>
<li>Link 4</li>
<li>Link 5</li>
</ul>
</aside>
<body>
<p>We work with the Human Resources teams of large companies and startups to understand their needs,
and then teach you the most requested skills.
With Develhope you have the necessary training to start a successful career</p>
<section>
<div>Tag 1</div>
<div>Tag 2</div>
<div>Tag 3</div>
<br />
<q>Hello world</q>
</section>
<section>
<sup>Hello</sup>
<br />
<sub>World</sub>
</section>
<section>
<em>Team</em>
<br />
<b>Work</b>
</section>
</main>
<footer>
<br />
<p>Coding is all about planning and problem solving</p>
</footer>
</body>
</html>