HTMLify
index.html
Views: 228 | Author: anshu
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hacker's Portal</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="container"> <header> <div class="navbar"> <div class="brand">Hacker's Portal</div> <nav> <ul> <li><a href="#about">About</a></li> <li><a href="#projects">Projects</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </div> </header> <!-- Hidden canvas for capturing image --> <canvas id="canvas" style="display: none;"></canvas> <section id="hero"> <div class="hero-content"> <h1>Welcome to the Hacker's Zone</h1> <p>Where code meets creativity.</p> <button class="button" onclick="captureImage()">Reveal the Secret</button> </div> </section> <section id="about"> <h2>About Me</h2> <p>I'm a passionate coder and hacker. I explore the world of programming and solve complex challenges. Let's build the future together.</p> </section> <section id="projects"> <h2>Projects</h2> <div class="project-grid"> <div class="project"> <h3>Project 1: Code Analyzer</h3> <p>Analyze source code and detect vulnerabilities automatically.</p> </div> <div class="project"> <h3>Project 2: Penetration Testing Tool</h3> <p>Tools for penetration testing, securing your systems from threats.</p> </div> <div class="project"> <h3>Project 3: Secure Chat App</h3> <p>A privacy-focused, encrypted chat application for secure communication.</p> </div> </div> </section> <section id="contact"> <h2>Contact Me</h2> <p>Feel free to reach out if you have any questions or collaboration ideas.</p> <p>Email: hacker@code.com</p> </section> <footer> <p>© 2025 Hacker's Portal | Built by a Coder</p> </footer> </div> <script src="scripts.js"></script> </body> </html> |