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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
.zed
55 changes: 55 additions & 0 deletions author-profile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<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>
<style>
* {
font-family: New York;
}
</style>
</head>
<body>
<div>
<h2>Gert Cauwenberghs</h2>
<address>
<a href="mailto:gert@jhu.edu">Mail: gert@jhu.edu</a> <br />
<a href="tel:+11231234567">Phone: +1 (123) 123-4567</a>
</address>
<blockquote>
<p>
We knew the world would not be the same. A few people
laughed, a few people cried. Most people were silent. I
remembered the line from the Hindu scripture, the
Bhagavad-Gita; Vishnu is trying to persuade the Prince that
he should do his duty, and to impress him, takes on his
multi-armed form and says, 'Now I am become Death, the
destroyer of worlds.' I suppose we all thought that, one way
or another.
</p>
<footer>
-Robert Oppenheimer,
<cite> upon inventing the nuclear bomb </cite>
</footer>
</blockquote>
<h4>Get in touch</h4>
<form style="display: table">
<p style="display: table-row">
<label style="display: table-cell" for="a"> Name </label>
<input style="display: table-cell" id="a" type="text" />
</p>
<p style="display: table-row">
<label style="display: table-cell" for="b"> Email </label>
<input style="display: table-cell" id="b" type="text" />
</p>
<br />
<button>Submit</button>
</form>
</div>
</body>
</html>
73 changes: 62 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,64 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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" />

</head>
<body>

</body>
<head>
<meta charset="UTF-8" />
<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>
<style>
* {
font-family: New York;
}
</style>
</head>
<body>
<h1>Incremental and Decremental Support Vector Machine Learning</h1>
<h3>Gert Cauwenberghs</h3>
<p>
<a href="author-profile.html">Link to other page</a> <br />
CLSP, ECE Dept. <br />
John Hopkins University <br />
Baltimore, MD 21218 <br />
<em>gert@jhu.edu</em>
</p>
<section>
<h2>Abstract</h2>
<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>
<ol>
<li>
<h3>Introduction</h3>
<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>
</li>
<li>
<img
src="https://docs.opencv.org/2.4/_images/optimal-hyperplane.png"
/>
</li>
</ol>
</section>
<a href="https://en.wikipedia.org/wiki/Support_vector_machine">
Go to Wikipedia to know more
</a>
</body>
</html>