Skip to content

Commit 7a59908

Browse files
Add files via upload
1 parent 2dcccf3 commit 7a59908

1 file changed

Lines changed: 72 additions & 9 deletions

File tree

start.html

Lines changed: 72 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,79 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="it">
33
<head>
4-
<meta charset="UTF-8" />
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
5+
<meta charset="utf-8" />
56
<meta
67
name="viewport"
7-
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
8+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
89
/>
9-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
10-
<meta property="og:description" content="creating an html blog page">
11-
<meta property="og:author" content="Promise Akhonowe">
12-
<meta property="og:image" content="C:\Users\SAMSONG PC\Desktop\ETHAN\Head\favicon.ico" />
13-
<title>HTML lesson</title>
10+
<title>HTML Lesson</title>
11+
12+
<style>
13+
header {
14+
border: 2px solid red;
15+
}
16+
17+
main {
18+
border: 2px solid black;
19+
}
20+
21+
section {
22+
border: 1px solid grey;
23+
}
24+
25+
footer {
26+
border: 2px solid green;
27+
}
28+
</style>
1429
</head>
15-
<body></body>
30+
31+
<body>
32+
<header>
33+
<h1>DEVELHOPE</h1>
34+
<br />
35+
<h2>ACADEMY</h2>
36+
</header>
37+
38+
<aside>
39+
<ul>
40+
<li>Link 1</li>
41+
<li>Link 2</li>
42+
<li>Link 3</li>
43+
<li>Link 4</li>
44+
<li>Link 5</li>
45+
</ul>
46+
</aside>
47+
48+
<body>
49+
<p>We work with the Human Resources teams of large companies and startups to understand their needs,
50+
and then teach you the most requested skills.
51+
With Develhope you have the necessary training to start a successful career</p>
52+
53+
<section>
54+
<div>Tag 1</div>
55+
<div>Tag 2</div>
56+
<div>Tag 3</div>
57+
<br />
58+
<q>Hello world</q>
59+
</section>
60+
61+
<section>
62+
<sup>Hello</sup>
63+
<br />
64+
<sub>World</sub>
65+
</section>
66+
67+
<section>
68+
<em>Team</em>
69+
<br />
70+
<b>Work</b>
71+
</section>
72+
</main>
73+
74+
<footer>
75+
<br />
76+
<p>Coding is all about planning and problem solving</p>
77+
</footer>
78+
</body>
1679
</html>

0 commit comments

Comments
 (0)