-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,50 @@ | ||
Hello World | ||
<!DOCTYPE html> | ||
<html lang="en" > | ||
|
||
<head> | ||
<title>jeng's little corner</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="wrapper"> | ||
<div class="header"> | ||
<img src="zuerich.jpg"> | ||
</div> | ||
<div class="tabs"> | ||
<input class="input" name="tabs" type="radio" id="tab-1" checked="checked"/> | ||
<label class="label" for="tab-1">About Me</label> | ||
<div class="panel"> | ||
<h1>About Me</h1> | ||
<p>I enjoy working with computers, learning new technologies and writing code.</p> | ||
<p>When I'm off the desk, I like to stroll around the city, catching movies or some tunes of unknown bands; or socialising.</p> | ||
</div> | ||
<input class="input" name="tabs" type="radio" id="tab-2"/> | ||
<label class="label" for="tab-2">Projects</label> | ||
<div class="panel"> | ||
<h1>Projects</h1> | ||
<p>I have worked with all three major OS (Linux/Windows/MacOS), Docker, Vagrant, C and its tools (gcc, make, gdb, valgrind), vim, MySQL, PHP and its tools (Xdebug, PhpStorm, Composer, PHPUnit, etc), VCS like Git and svn, and experience in/with OSS communities.</p> | ||
</div> | ||
<input class="input" name="tabs" type="radio" id="tab-3"/> | ||
<label class="label" for="tab-3">Elsewhere</label> | ||
<div class="panel"> | ||
<h1>Elsewhere</h1> | ||
<h2>Online</h2> | ||
<ul> | ||
<li><a target="_blank" href="https://github.com/engelju">... on Github</a> | ||
<li><a target="_blank" href="https://last.fm/user/tandouri">... on Last.fm</a> | ||
</ul> | ||
<h2>Offline</h2> | ||
<ul> | ||
<li><a target="_blank" href="https://pfadi-sa.ch">... with our local Pfadi group</a> | ||
<li><a target="_blank" href="http://gnj.ch">... with our local Guggenmusig group</a> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |