Skip to content

Commit 60ae616

Browse files
HTML Example
1 parent effba55 commit 60ae616

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
5+
<meta property="og:image"
6+
content="https://learn-it-university.com/images/favicon.jpg" />
7+
<meta property="og:description"
8+
content="Learn Java from scratch and become Java Software Engineer: Basics, OOP, Interview questions, Git, Java Collections etc" />
9+
<meta property="og:url"
10+
content="https://learn-it-university.com/java-pdp.php" />
11+
<meta property="og:title"
12+
content="Java from Zero to First Job - Practical Guide, 800+ examples" />
13+
<!-- Site Meta -->
14+
<title>Learn IT University | Java Course</title>
15+
<meta name="keywords"
16+
content="java, the most complete java course, learn programming, learn java, online, best java course">
17+
<meta name="description"
18+
content="Java from Zero to First Job - Practical Guide, 800+ examples | Learn Java from scratch and become Java Software Engineer: Basics, OOP, Interview questions, Git, Java Collections etc">
19+
<meta name="author" content="Andrii Piatakha">
20+
21+
<meta charset="UTF-8">
22+
</head>
23+
24+
<body>
25+
<h1>This is a heading</h1>
26+
<h2>This is another heading</h2>
27+
<p>This is a paragraph.</p>
28+
<p>This is another paragraph.</p>
29+
<p>Open Google via <a href="https://google.com">this</a> link</p>
30+
<p>Open Google via <a href="https://google.com" target="_blank">this</a> link in a new tab</p>
31+
32+
<!-- This is a comment -->
33+
34+
<img src="https://learn-it-university.com/images/favicon.jpg" alt="learn-it" width="150" height="150">
35+
<img src="https://learn-it-university.com/images/favicon.jpg" alt="learn-it" width="10%" height="10%">
36+
37+
<table border="1">
38+
<tr>
39+
<th>Company</th>
40+
<th>Contact</th>
41+
<th>Country</th>
42+
</tr>
43+
<tr>
44+
<td>Alfreds Futterkiste</td>
45+
<td>Maria Anders</td>
46+
<td>Germany</td>
47+
</tr>
48+
<tr>
49+
<td>Centro comercial Moctezuma</td>
50+
<td>Francisco Chang</td>
51+
<td>Mexico</td>
52+
</tr>
53+
</table>
54+
55+
<ul>
56+
<li>Coffee</li>
57+
<li>Tea</li>
58+
<li>Milk</li>
59+
</ul>
60+
61+
<ol>
62+
<li>Coffee</li>
63+
<li>Tea</li>
64+
<li>Milk</li>
65+
</ol>
66+
67+
</body>
68+
</html>

0 commit comments

Comments
 (0)