https://adwadev.com/

Submitted URL:
https://adwadev.com/
Report Finished:

The outgoing links identified from the page

LinkText
https://github.com/natoidev GitHub
https://www.linkedin.com/in/natnael-samuel-8185b5319/ LinkedIn

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://adwadev.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Natnael Samuel - Portfolio</title>
    <link rel="stylesheet" href="styles.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
    <header>
        <div class="container">
            <h1>Natnael Samuel</h1>
            <p>PHP Developer | Hacker | API Developer</p>
        </div>
        <nav>
            <div class="container">
                <ul>
                    <li><a href="#about">About</a></li>
                    <li><a href="#skills">Skills</a></li>
                    <li><a href="#projects">Projects</a></li>
                    <li><a href="#contact">Contact</a></li>
                </ul>
            </div>
        </nav>
    </header>
    <section id="about">
        <div class="container">
            <h2>About Me</h2>
            <p>I'm a 16-year-old student passionate about PHP development, hacking, and API development. Always eager to learn and explore new technologies.</p>
        </div>
    </section>
    <section id="skills">
        <div class="container">
            <h2>Skills</h2>
            <div class="skills-grid">
                <div class="skill-card">PHP</div>
                <div class="skill-card">API Development</div>
                <div class="skill-card">Hacking</div>
                <div class="skill-card">JavaScript</div>
                <div class="skill-card">HTML &amp; CSS</div>
            </div>
        </div>
    </section>
    <section id="projects">
        <div class="container">
            <h2>Projects</h2>
            <div class="projects-grid">
                <div class="project-card">
                    <h3>Project 1</h3>
                    <p>Description of project 1.</p>
                </div>
                <div class="project-card">
                    <h3>Project 2</h3>
                    <p>Description of project 2.</p>
                </div>
            </div>
        </div>
    </section>
    <section id="contact">
        <div class="container">
            <h2>Contact</h2>
            <p>Feel free to reach out to me through any of the following platforms:</p>
            <ul class="social-links">
                <li><a href="https://github.com/natoidev" target="_blank"><i class="fab fa-github"></i> GitHub</a></li>
                <li><a href="https://www.linkedin.com/in/natnael-samuel-8185b5319/" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a></li>
            </ul>
        </div>
    </section>
    <footer>
        <div class="container">
            <p>© 2024 Natnael Samuel. All rights reserved.</p>
        </div>
    </footer>
    <script>
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>


</body></html>