Dashboard Temp Share Shortlinks Frames API

HTMLify

landingp.html
Views: 753 | Author: tanishkak
 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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width initial-scale=1.0">
        <link rel="stylesheet" href="landingp.css">
        <title>LANDING PAGE</title>
    </head>
    <body>
        <div class="nav">
            <a href="#">Home</a>
            <a href="#">About</a>
            <a href="#">Courses</a>
            <a href="#">Services</a>
            <a href="#">Contact</a>
            <div class="search-container">
                <tr><input type="text" placeholder="search" name="search"><tr>
            </div>
        </div>
        <div class="section">
            <h1>Menzii Academy &#10024;</h1>
            <div class="login-form">
                <tr><input type="text" placeholder="username"></tr><br>
                <tr><input type="password" placeholder="password"></tr><br>
                <tr><input type="submit"></tr>
            </div>
        </div>
        <img src="bb.png" alt="image" height="300" width="350">
        <h3><b>About us: </b></h3>
        <p>
            Menzii Academy provides a structured learning environment where students can learn from experienced 
            trainers and gain practical hands-on experience in the latest technologies. we have so many courses 
            related to IT like- <q style="color: goldenrod;">LINUX,AWS,DATABASE,CLOUD,DEVELOPMENT</q> etc.
        </p>
        <h3><b>Contact us: </b></h3>
        <p>
            <a href="https//www.whatsapp.com">Whatsapp</a><br>
            <a href="https//www.instagram.com">instagram</a><br>
            <a href="https//www.facebook.com">Facebook</a><br>
            <a href="https//www.youtube.com">Youtube</a><br>
        </p>

        <div class="footer">
            <p>&copy; 2023 Menzii Academy. All rights reserved.</p>
        </div>

    </body>
</html>