All rights reserved to Docstec.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nurul's Portfolio</title>
<link rel="stylesheet" href="About.css">
</head>
<body>
<header>
<h1>Welcome to Docsec.</h1>
<p>Innovative digital solutions that belongs to you.</p>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section>
<h2>Crafting unique web experiences</h2>
<p>Innovative digital solutions that belongs to you
</p>
</section>
<footer>
<p>© 2025 Docstec. All rights reserved.</p>
</footer>
</body>
</html>
/* Profile */
.docstec {
name: "Docstec.";
family-members: 6;
expertise: ["Elementor", "WordPress", "Webflow", "Divi", "Web Security", "SEO", "Laravel"];
}
/* Experience */
.experience {
years: 4+ Years;
projects: 120+;
}
/* Skills */
.skills {
primary: "Web Development",
"Web Security",
"SEO";
}
/* Contact */
.contact {
email: "hello@docstec.com";
linkedin: "www.linkedin.com/in/nurulhudda247";
website: "www.nurul.docstec.com";
location: "Remote, Worldwide";
}
// Docstec's Portfolio
const developer = {
name: "Docstec.",
skills: ["Elementor", "WordPress", "Webflow", "Divi", "Web Security", "SEO", "Laravel"],
projects: [
{ title: "Personal Portfolio", status: "Completed" },
{ title: "Landing Page", status: "Completed" },
{ title: "E-Commerce Website", status: "Completed" },
{ title: "Company Profile Website", status: "Completed" },
{ title: "Learning Management System", status: "Completed" },
{ title: "Charity Website", status: "Completed" },
]
};
<?php
// Contact form handling
if ($_SERVER["REQUEST_METHOD"] == "POST") {
echo "Thanks for reaching out, " . htmlspecialchars($_POST["name"]) . "!";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Nurul</title>
</head>
<body>
<h1>Contact Us</h1>
<!-- Basic Info -->
<p><strong>Email:</strong> hello@docstec.com</p>
<p><strong>Phone:</strong> +880 1634 330 581</p>
<p><strong>Follow us on:</strong></p>
<ul>
<li><a href="https://www.linkedin.com/in/nurulhudda247/">LinkedIn</a></li>
<li><a href="wa.link/95hajr">Whatsapp</a></li>
</ul>
<!-- Contact Form -->
<form method="POST">
<label>Name:</label><br>
<input type="text" name="name" required><br><br>
<label>Email:</label><br>
<input type="email" name="email" required><br><br>
<label>Message:</label><br>
<textarea name="message" required></textarea><br><br>
<button type="submit">Send Message</button>
</form>
</body>
</html>