helpjob-chrome-extension/helpjob/helpjob.html
2024-05-28 23:06:36 +02:00

25 lines
690 B
HTML

<!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>