<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,700&family=Oswald:wght@400;700&display=swap" rel="stylesheet" />
    <link rel="preconnect" href="https://fonts.gstatic.com/">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <title>My Portfolio</title>
</head>
<body>
    <!-- Head section start -->
    <div class="hero">
        <nav>
            <h2 class="logo">Dev <span>Iskalo</span></h2>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#about">About Me</a></li>
                <li><a href="#">Services</a></li>
                <li><a href="#">Skills</a></li>
                <li><a href="#">Contact Me</a></li>
            </ul>
            <a href="#" class="btn">Subscribe</a>
        </nav>
         <img src="./images/me2.png" alt="" class="bg"> 
        <div class="content">
            <h4>Hello, my name is</h4>
            <h1>Isaac Lovern <span>Kamara, Jr</span></h1>
            <h3>I'm a Web Developer.</h3>
            <div class="newsletter">
                <form>
                    <input type="email" name="email" id="mail" placeholder="Enter Your Email...">
                    <input type="submit" name="submit" value="Let's start">
                </form>
            </div>
        </div>
    </div>
    <!-- About Section start -->
    <section id="about" class="about">
        <div class="main">
            <img src="./images/me1.png" alt="MY Image">
            <div class="about-text">
                <h2>About Me</h2>
                <h5>Developer <span>& Designer</span> </h5>
                <p>I am a front-end web developer. I can provide clean code and pixel perfect design.
                   I also make the website more and more interactive with web animations. A responsive design makes your website accessible to all users, regardless of their devices.
                </p>
                <button>let's Talk</button>
            </div>
        </div>
    </section>
    <!-- Service Section start -->
    <div class="service">
        <div class="title">
            <h2>My Services</h2>
        </div>
        <div class="box">
            <div class="card">
                <i class="fa-solid fa-bars"></i>
                <h5>Web Development</h5>
                <div class="pra">
                    <p>Every website should be built with two primary goals: Firstly, it needs to work across all devices. Secondly, it needs to be fast as possible.</p>
                    <p style="text-align: center;"> 
                        <a class="button" href="#">Read More</a></p>
                </div>
            </div>
            <div class="card">
                <i class="fa-solid fa-user"></i>
                <h5>Web Development</h5>
                <div class="pra">
                    <p>Every website should be built with two primary goals: Firstly, it needs to work across all devices. Secondly, it needs to be fast as possible.</p>
                    <p style="text-align: center;"> 
                        <a class="button" href="#">Read More</a></p>
                </div>
            </div>
            <div class="card">
                <i class="fa-solid fa-bell"></i>
                <h5>Web Development</h5>
                <div class="pra">
                    <p>Every website should be built with two primary goals: Firstly, it needs to work across all devices. Secondly, it needs to be fast as possible.</p>
                    <p style="text-align: center;"> 
                        <a class="button" href="#">Read More</a></p>
                </div>
            </div>
        </div>
    </div>
    <!-- Contact Me -->
    <div class="contact-me">
        <p>
            Let Me Get You A Beautiful Website.
        </p>
        <a class="button-two" href="#">Hire Me</a>
    </div>
    <!-- Footer start -->
    <footer>
        <p>Dev Iskalo</p>
        <p>
            For more HTML, CSS and coding tutorial - please click on the link below to subscribe to my channel:
        </p>
        <div class="social">
            <a href=""><i class="fa-brands fa-facebook-f"></i></a>
            <a href=""><i class="fa-brands fa-instagram"></i></a>
            <a href=""><i class="fa-brands fa-whatsapp"></i></a>
        </div>
        <p class="end">CopyRight By Dev Iskalo</p>
    </footer>
</body>
</html>