Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions Day2 Lecture Exercises/login_interface.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="eng">
<head>
<style>
img{
position: relative;
top: -50px;
}
div{
border-radius: 50px;
height: 750px;
width:400px;
position: absolute;
left: 40%;
top: 20%;
text-align: center;
background-color: gray;
box-shadow: 3px 3px 5px 6px #ccc;
}
</style>
<meta charset="utf-8">
<meta name="description" content="A page for exploring basic HTML documents">
<title>User Login</title>
</head>
<body>
<div>
<img src="PinClipart.com_clip-art-download-for_1244578.png" class="loginPic" alt="" height="100px" width="100px" >
<h2 style="text-align: center;">User Login </h2>
<br>
<input type="email" name="" id="" placeholder="Enter Your Email">
<br>
<br>
<input type="password" placeholder="Enter password">
<br>
<input type="button" value="Login">
<br>
<br>
<input type="button" value="Register">


</button>
</div>

</body>
</html>
7 changes: 6 additions & 1 deletion box-model1.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<!-- ----------------------------------------------------------------- -->
<!-- ----------------------------------------------------------------- -->
<head> <!-- header begins here -->


</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
Expand Down Expand Up @@ -35,7 +38,9 @@
<body> <!-- body begins here -->


The quickest of brown foxes.
<div id="div1">

</div>



Expand Down
10 changes: 9 additions & 1 deletion box-model2.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,18 @@
<!-- ---------------------------------------------------------------------------------- -->
<body> <!-- body begins here -->

<div id="div3">

The quickest of brown foxes.


<div id="div1" >

</div>
<br>
<div id="div2" style="height: 400px;">

</div>
</div>


<!-- ====================================================== -->
Expand Down
16 changes: 11 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
body {
background-color: navy;
background-color: crimson;
border-color: chartreuse;
}
#div2{
background-color: blanchedalmond;
height: 750px;
width: 750px;
}


object {
height: 100vh;
width: 100vh;
#div1{
background-color: blue;
height: 750px;
width: 750px;
}