Skip to content
Open
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
Binary file added .DS_Store
Binary file not shown.
65 changes: 63 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,70 @@
<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>Incremental and Decremental Support Vector Machine Learning</title>
</head>
<body>

<header>
<h1>Incremental and Decremental Support Vector Machine Learning</h1>
<hr />
</header>
<section>
<p>
<b> Gert Cauwenberghs</b> <br />
<br />
CLSP, ECE Dept. <br />
<br />
John Hopkins University <br />
<br />
Baltimore, MD 21218 <br />
<br />
<em>gert@ihu.edu</em>
<br />
</p>
</section>
<header>
<h2>Abstract</h2>
</header>
<section>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
</p>
</section>
<section>
<ol>
<li>
<b>Introduction</b>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</p>
<img
src="https://docs.opencv.org/2.4/_images/optimal-hyperplane.png"
width="300"
height="300"
/>
</li>
<li></li>
</ol>
</section>
<div>
<a href="https://en.wikipedia.org/wiki/Support_vector_machine">
Go to Wikipedia to know more
</a>
</div>
<div>
<a href="page2.html"> Go to page 2 </a>
</div>
</body>
</html>
54 changes: 54 additions & 0 deletions page2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Second Page</title>
<style>
h1 {
color: blue;
border: 3px dotted black;
}
h2 {
color: red;
}
</style>
</head>
<body>
<h1>Using 5 New Elements</h1>
<hr/>
<h2>1. Using Bullet Points</h2>
<ul>
<li>First Bullet Point</li>
<li>Second Bullet Point</li>
<li>Third Bullet Point</li>
</ul>
<h2>2. Using Numbered Lists</h2>
<ol>
<li>First Numbered Bullet Point</li>
<li>Second Numbered Bullet Point</li>
<li>Third Numbered Bullet Point</li>
</ol>
<h2>3. Underlining Text</h2>
<p><u>This text is underlined</u> </p>
<h2>4. Creating a table</h2>
<table id="table1">
<tr>
<th>First Column</th>
<th>Second Column</th>
<th>Third Column</th>
</tr>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
</tr>
<tr>
<td>cell4</td>
<td>cell5</td>
<td>cell6</td>
</tr>
</table>
</tr>
<h2>5. Changing the colours of text</h2>
</body>

</html>