-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (86 loc) · 5.49 KB
/
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
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
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<nav id="navbar">
<header><h3>Liste of content</h3></header>
<a class="nav-link" href="#Introduction">Introduction</a>
<a class="nav-link" href="#Lesson_overview">Lesson overview</a>
<a class="nav-link" href="#Assignment">Assignment</a>
<a class="nav-link" href="#knowledge_check">Knowledge check</a>
<a class="nav-link" href="#Additional_resources">Additional resources</a>
</nav>
<main id="main-doc">
<section class="main-section" id="Introduction">
<header ><h2>Introduction</h2></header>
<p>Before you can understand how to program the web, you need a more rigorous understanding of the web itself than you likely have now. These concepts provide a more holistic understanding of the ecosystem in which you will be working and will enable you to talk intelligently with other developers about your work.</p>
<p></p>
</section>
<section class="main-section" id="Lesson_overview">
<header><h2>Lesson overview</h2></header>
<p>This section contains a general overview of topics that you will learn in this lesson.</p>
<ul>
<li>Describe what the internet is.</li>
<li>Describe what packets are and how they are used to transfer data.</li>
<li>Understand the differences between a web page, web server, web browser and search engine.</li>
<li>Briefly explain what a client is.</li>
<li>Briefly explain what a server is.</li>
<li>Explain what IP addresses are.</li>
<li>Explain what DNS servers are.</li>
</ul>
</section>
<section class="main-section" id="Assignment">
<header><h2>Assignment</h2></header>
<ol>
<li>Watch this <a href="">BBC short</a> for an overview of how the internet works.</li>
<li>Read this <a href="">articl</a> from Mozilla on "How does the Internet work?".</li>
<li>Watch <a href="">How the internet Works in 5 minutes.</a></li>
<li>Read up on the differences between a web page, a web server, and a search engine.</li>
<li>Watch this <a href="">Google short</a> explaining what a web browser is. then, find out what web browser you are using right <a href="">now</a></li>
<li>Read about how one part of the web <a href="">interacts with another</a> and <a href="">read about</a> or <a href="">watch</a> a DNS request in action.</li>
</ol>
</section>
<section class="main-section" id="Knowledge_check">
<header><h2>Knowledge check</h2></header>
<p>This section contains questions for you to check your understanding of this lesson on your own. If you’re having trouble answering a question, click it and review the material it links to.
</p>
<ul>
<li><a href="">What is a web server?</a></li>
<li><a href="">what is a network?</a></li>
<li><a href="">what is the internet?</a></li>
<li><a href="">what is an IP address?</a></li>
<li><a href="">what is a router?</a></li>
<li><a href="">What is an ISP?</a></li>
<li><a href="">What are packets and how are they used to transfer data?</a></li>
<li><a href="">What is a client?</a></li>
<li><a href="">What is a server?</a></li>
<li><a href="">What is a web page?</a></li>
<li><a href="">What is a web browser?</a></li>
<li><a href="">What is a search engine?</a></li>
<li><a href="">What is a DNS request?</a></li>
<li><a href="">Which browser are you currently using?</a></li>
<li><a href="">In your own words, describe the process that takes place when you initiate a search on google.com in terms of what we discussed on this section.</a></li>
</ul>
</section>
<section class="main-section" id="Additional_resources">
<header><h2>Additional resources</h2></header>
<p>This section contains helpful links to other content. It isn’t required, so consider it supplemental.</p>
<ul>
<li>Listen to <a href="">Part 1</a> (starts around 8:30) and <a href="">Part 2</a> of Security Now Podcast's How the web works series.</span></li>
<li>Watch <a href="">A packet's journy</a></li>
<li>Consider buing the book <a href="">Tibes: Behind the Scenes at the Internet.</a></li>
<li>if you're in for a bit more reading, you can check out the <a href="">Introduction to HTTP</a> online book at LaunchSchool. this book also touches on some topics covered later in the curriculum, such as develper tools and security. Additionally, you can learn about HTTP tools, which you may find helpful in the future.</li>
<li>Explore how fiber optics uses light to transmit data over long sitances, and with intergrated photonics, expands our virtual world beyond the internet. <a href="">The hidden network that makes the internet possible.</a></li>
<li>Some advice on reading: We recommend that you only review the immediate links posted in out curriculum. You recommend that you only review the immediate links posted in our curriculum. You can laways go deeper on any subject if you wish, but be careful not to overload yourself on information!</li>
</ul>
</section>
</main>
<footer>
</footer>
</body>
</html>