Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Madad - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Madad مدد</h1>
<nav>
<ul id="main-nav">
<li class="active"><a href="home.html">Home</a></li>
<li><a href="search-worker.html">Search Worker</a></li>
<li><a href="account.html">Account</a></li>
<li><a href="worker-account.html">Worker Account</a></li>
</ul>
</nav>
<div class="help-icon">i</div>
</header>
<main>
<main>
<section id="account-information">
<h2>Account Information</h2>
<form id="account-info-form">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" required>
<label for="skills">Skills</label>
<input type="text" id="skills" name="skills">
<label for="location">Location</label>
<input type="text" id="location" name="location">
<label for="personal-info">Personal Info</label>
<textarea id="personal-info" name="personal-info"></textarea>
<label for="details">Details</label>
<textarea id="details" name="details"></textarea>
<button type="submit">Save</button>
</form>
</section>
</main>
</main>
<footer>
</footer>
<script src="script.js"></script>
</body>
</html>