Skip to content
Open

Html #106

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions SecondPage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Second Page</title>
<meta
name="description"
content="This is the second pGE OF MY PAPER PROJECT"
/>
</head>
<body>
<header>
<h1>Front End Developer</h1>
<nav>
<a href="index.html">Back to main Page</a>
</nav>
</header>

<aside>
<h2>What is Lorem</h2>
<p>
<em
>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. </em
>Lorem Ipsum has been the industry's standard dummy text ever since the
1500s, when an unknown printer took a galley of type and scrambled it to
make a type specimen book. It has survived not only five centuries, but
also the leap into electronic typesetting, remaining essentially
unchanged. It was popularised in the 1960s with the release of Letraset
sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of Lorem
Ipsum.
</p>
</aside>
<article>
<h2>Why do we use it?</h2>
<p>
It is a long established fact that a reader will be distracted by the
readable content of a page when looking at its layout. The point of
using Lorem Ipsum is that it has a more-or-less normal distribution of
letters, as opposed to using 'Content here, content here', making it
look like readable English. Many desktop publishing packages and web
page editors now use Lorem Ipsum as their default model text, and a
search for 'lorem ipsum' will uncover many web sites still in their
infancy. Various versions have evolved over the years, sometimes by
accident, sometimes on purpose (injected humour and the like).
</p>
</article>

<img
src="https://docs.opencv.org/2.4/_images/optimal-hyperplane.png"
alt="Front End Developer description"
/>
<p>
For more information visit
<a href="https://en.wikipedia.org/wiki/Support_vector_machine"
>Lorem Ipsum</a
>.
</p>
</body>
</html>
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />

<title>Main Page</title>
</head>
<body>

<h1>Welcome to the Main Page</h1>
<!-- Link to the second Page-->
<a href="SecondPage.html">Go to Second Page</a>
</body>
</html>