Week 35 Module

In this lesson, we will continue to learn how to code in html. This is the language that is used to design web pages. We review key defintions when it comes to web design. Some of the webpages that we will be using are as follows:

1)Codecademy.org

2) W3schools.com

Please click on the buttons below to arrive at these webpages. 


Coding is as simple as putting information in between the start and ending html tags using a coding editor. There are two main tags, which are the 

<h1> The title of the page goes here.</h1>  

 <p>Your paragraph goes here. </p>

We will learn to code by first using Notepad on the computer and then an editor on W3schools.com

Simple  Example.

<h1> The Disadvantages of Artificial Intelligence</h1>

<p>There are many benefits of artificial intelligence. However, there are many disadvantages as well. In recent news, artificial intelligent robots have said that they wanted to exterminate the human race in a joking manner or so it seems.</p>

<p >Ellon Musk has recently warned the public about the dangers of artificial intelligence. He has said that when robots are smarter than the average human being, it is just a matter of time before things get out of control. </p>

<p> One solution is that if artificial intelligence does become a threat, the power can simply be disconnected. Hence, ending the threat. The threat will not be with just one robot, but a data center with a vast network of computers that has become "conscious" as engineers have put it, much like Skynet in the movie "The Terminator" The question is how do you fight against a computer that can calculate billions of calculations a second!</p>

<p> While there are huge benefits to be gained from artificial intelligence, like cars that drive themselves to increased productivity, it remains to be seen if the benefits outweigh the costs. </p>

Here are the results of the html code.

A more complicated sample code with all the components of an html document.


<!DOCTYPE html>

<html>

<header>

<title> Title Page </title>

</header>

<body>

<h1>The Disadvantages of Artificial Intelligence</h1>

<p>There are many benefits of artificial intelligence. However, there are many disadvantages as well. In recent news, artificial intelligent robots have said that they wanted to exterminate the human race in a joking manner or so it seems.</p>

<p>Ellon Musk has recently warned the public about the dangers of artificial intelligence. He has said that when robots are smarter than the average human being, its just a matter of time before things get out of control. </p>

<p> One solution is that if artificial intelligence does become a threat, the power can simply be disconnected. Hence, ending the threat. The threat will not be with just one robot, but a data center with a vast network of computers that has become "conscious" as engineers have put it, much like Skynet in the movie "The Terminator" The question is how do you fight against a computer that can calculate billions of calculations a second!</p>

<p> While there are huge benefits to be gained from artificial intelligence, like cars that drive themselves to increased productivity, it remains to be seen if the benefits outweigh the costs. </p>

</body>

</html>




Assignments Tab

Space Flight.pdf
Untitled document
Untitled document
Untitled document
Untitled document