-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (46 loc) · 1.36 KB
/
index.html
File metadata and controls
54 lines (46 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
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML Learning Hub</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Welcome to My HTML Learning Hub</h1>
<p>Each page teaches a new HTML skill.</p>
</header>
<nav>
<a href="text.html">First HTML file</a>
<a href="links.html">Links</a>
<a href="images.html">Images</a>
<a href="lists.html">Lists</a>
<a href="tables.html">Tables</a>
<a href="css.html">CSS</a>
</nav>
<div class="content">
<div class="lesson-box">
<h2>Step 1: Create Your First Repository</h2>
<p>Before you start learning HTML, you need a place to store your files.</p>
<p><strong>Create a new GitHub repository</strong> and name it something like:</p>
<ul>
<li><code>html-learning</code></li>
<li><code>my-first-website</code></li>
<li><code>web-practice</code></li>
</ul>
<p>Once your repo is ready, add your <code>index.html</code> file and begin your journey.</p>
</div>
<div class="lesson-box">
<h2>What You’ll Learn</h2>
<ul>
<li>How to format text</li>
<li>How to create links</li>
<li>How to add images</li>
<li>How to make lists</li>
<li>How to build tables</li>
<li>And more as we go!</li>
</ul>
</div>
</div>
</body>
</html>