-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
107 lines (81 loc) · 3.71 KB
/
index.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prodigy InfoTech!</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<style>
body {
background-image: url('herobg.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-color: rgb(1, 1, 16);
color: white;
margin: 0;
padding: 0;
height: 100vh;
}
</style>
</head>
<body>
<p>Hello world! I am Anuj!</p>
<nav class="navbar navbar-expand-lg navbar-dark bg-black fixed-top">
<div class="container-fluid">
<img src="download.jpg" alt="logo" class="logoimg">
<a class="navbar-brand me-auto" href="#">Prodigy InfoTech</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ms-auto">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link" href="#about">About</a>
<a class="nav-link" href="#">Contact</a>
<a class="nav-link" href="#">Sign In</a>
</div>
</div>
</div>
</nav>
<div class="maincontainer">
<div class="heading">
<br>
<br>
<h1 style="font-weight: bolder; " >Prodigy InfoTech</h1><br/>
<div>
<h2>Lets Take it from DevBranch </h2>
<h3>Providing World Class E-Learning Experince with Real world Internships</h3>
</div>
<div style="box-sizing: content-box; margin-top: 20px; margin-bottom: 20px; ">
<h3 id="typewriter">Hello, world!</h3>
</div>
<div >
<button class="startbut" onclick="scrollToAbout()"> Get Started</button>
</div>
</div>
<div class="halfhome">
<img src="heroimag.png" alt="photo" class="girl">
</div>
</div>
<section id="about">
<h1 id="black">ABOUT US</h1>
<div class="maincontainer">
<div class="abous">
<h3 style="width: 50%; margin-top: 50px;" >Transforming the Way People Learn</h3><br/>
<div class="para">
<p>
Our mission is to create innovative and accessible learning solutions that empower people of all ages and backgrounds to achieve their full potential. Whether you're a student looking to improve your grades, a professional seeking to upskill, or an organization looking to enhance employee training, we have the tools and resources you need to succeed.
</p>
</div>
</div>
<div class="halfhome">
<img src="download2.jpeg" alt="photo" class="abimg">
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>