Untitled
unknown
plain_text
3 years ago
1.4 kB
11
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Digital Rehab Pvt Ltd</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Digital Rehab Pvt Ltd</h1>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<p>Digital Rehab Pvt Ltd is a company that specializes in providing digital rehabilitation services to individuals and organizations.</p>
</section>
<section id="services">
<h2>Services</h2>
<ul>
<li>Digital Wellness Coaching</li>
<li>Online Therapy</li>
<li>Digital Detox Programs</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form action="submit-form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p>Copyright © Digital Rehab Pvt Ltd</p>
</footer>
</body>
</html>
Editor is loading...