-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1000 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Journey To Full Stacks</title>
<link rel="stylesheet" href="css\style.css">
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet">
</head>
<!-- COMMENTS -->
<header>
<h1>Welcome to a Journey to Full Stacks</h1>
</header>
<nav role="navigation" aria-label="Main Menu">
<ul>
<a href="Learning\HTML\html_learning.html">HTML</a>
<a href="Learning\CSS\css_learning.html">CSS</a>
<a href="Learning\JAVASCRIPT\javascript_learning.html">JAVASCRIPT</a>
</ul>
</nav>
<body>
<br>
<div class="description">
<p id="intro"> This website is made as a sandbox for myself in order
to bridge the things I've learned from LinkedIn Learning's
<a href="https://www.linkedin.com/learning/paths/become-a-full-stack-web-developer?u=78163626">Become a Full-Stack Web Developer</a>
to reality and doing it myself.
</p>
</div>
</body>
</html>