-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
48 lines (43 loc) · 1.63 KB
/
aboutme.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
<!DOCTYPE html>
<html>
<head>
<title> Jacob's TSP sim</title>
<link rel="stylesheet" type="text/css" href="Styling/style.css">
</head>
<body>
<h1> About me</h1>
<header>
<nav>
<ul>
<li> <a href="index.html" > <h3>Home</h3> </a></li>
<li> <h3>About Me</h3> </li>
<li> <a href="challanges.html" > <h3>TSP Challanges</h3> </a></li>
<li> <a href="algorithms.html" > <h3>The Algorithms</h3> </a></li>
</ul>
</nav>
</header>
<section>
<img src="Resources/jacob.png" class = "picture">
<div class="boxmodel">
<h4> Jacob Stachowicz </h4>
</div>
<div class="boxmodel">
<h4> Jacob Stachowicz </h4>
</div>
<div class="boxmodel">
<h4> Jacob Stachowicz </h4>
</div>
<div id="aboutText">
<p class="ptext">
I am an enthusiastic programmer who loves sharing new ideas.
My focus is on writing clean, clear and modular code.
A people oriented person, happiest working in a group, who can fill in the roles needed in a team to get things rolling.
Through my studies at KTH I have have become accustomed to knowledge intensive work and find its challenges rewarding.
</p>
</div>
</section>
<footer>
website made by Jacob Stachowicz
</footer>
</body>
</html>