first commit from 2012

This commit is contained in:
Shikiryu
2024-05-28 23:06:36 +02:00
commit 620db66f62
14 changed files with 454 additions and 0 deletions

24
helpjob/helpjob.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html> <!-- The new doctype -->
<html>
<head> <!-- No title and meta tags are necessary for the extension -->
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <!-- Including jQuery -->
<script src="script.js"></script> <!-- Our script file -->
</head>
<body>
<h1>Your latest alerts</h1>Thanks to Tutorialzine.com
<div id="formulaire">
<input type="text" id="login"/>
<input type="password" id="password"/>
<span id="loginBtn">Log in</span>
</div>
<div id="content">
<!-- The latest tutorials are going to be inserted here -->
</div>
</body>
</html>