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
35 changes: 29 additions & 6 deletions box-model1.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
<head> <!-- header begins here -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!--<meta name="description" content="">
<meta name="author" content="">-->
<meta name="Box model 1" content="">
<meta name="Monica Deshmukh" content="">

<link href="./css/style.css" rel="stylesheet">
<script type="text/javascript" src="./js/header-functions.js"></script>
Expand All @@ -32,10 +34,31 @@
<!-- ---------------------------------------------------------------------------------- -->
<!-- ---------------------------------------------------------------------------------- -->
<!-- ---------------------------------------------------------------------------------- -->
<body> <!-- body begins here -->


The quickest of brown foxes.
<body style = "background-color: white;"> <!-- body begins here -->


<!--The quickest of brown foxes.-->
<h1>Box Model Visual</h1>
<div style="
width:200px;
height:200px;
background-color: red;
border: 2px solid green;
margin: 0;">
<div style=
"width:100px;
height:100px;
background-color: blue;
margin-left: 0;
padding-left: 0;
margin: 0;">
Inner DIV
</div>
</div>
<!--
border: 2px solid white;
padding: 10px;
-->



Expand Down
79 changes: 75 additions & 4 deletions box-model2.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,81 @@
<!-- ---------------------------------------------------------------------------------- -->
<!-- ---------------------------------------------------------------------------------- -->
<!-- ---------------------------------------------------------------------------------- -->
<body> <!-- body begins here -->


The quickest of brown foxes.
<body style="background-color: white"> <!-- body begins here -->


<!-- The quickest of brown foxes.-->
<h1>Box Model Visual</h1>
<div style="
position: absolute;
width:200px;
height:300px;
background-color: red;
padding: 10px;
border: 2px solid green;
margin: 0;">
<div id="innerdiv1" style="
top: 10px;
left: 60px;
position: absolute;
width:100px;
height:100px;
background-color: blue;
padding: 10px;
border: 2px solid white;
margin: 0;">
Inner div
</div>

<div id="innerdiv2" style="
top: 150px;
left: 10px;
width:150px;
position: absolute;
height:100px;
background-color: beige;
padding: 10px;
border: 2px solid white;
margin: 20;">
Inner div2
</div>
</div><br>
<div style="
position: absolute;
left:0px;
top:500px;
width:200px;
height:300px;
background-color: red;
padding: 10px;
border: 2px solid green;
margin: 0;">
<div id="innerdiv1" style="
top: 50px;
left: 10px;
position: absolute;
width:100px;
height:100px;
background-color: blue;
padding: 10px;
border: 2px solid white;
margin: 0;">
Inner div
</div>

<div id="innerdiv2" style="
top: 190px;
left: 10px;
width:100px;
position: absolute;
height:100px;
background-color: beige;
padding: 10px;
border: 2px solid white;
margin: 20;">
Inner div2
</div>
</div>



Expand Down
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="Monica Deshmukh" content="">

<link href="./css/style.css" rel="stylesheet">
<script type="text/javascript" src="./js/header-functions.js"></script>
Expand All @@ -32,10 +32,12 @@
<!-- ---------------------------------------------------------------------------------- -->
<!-- ---------------------------------------------------------------------------------- -->
<!-- ---------------------------------------------------------------------------------- -->
<body> <!-- body begins here -->
<body style="background-color: white;"> <!-- body begins here -->


The quickest of brown foxes.
<!-- The quickest of brown foxes.-->
<a href="./box-model1.html">Box Model 1</a><br><br>
<a href="./box-model2.html">Box Model 2</a>



Expand Down
60 changes: 60 additions & 0 deletions loginInterface.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>loginInterface</title>
</head>


<body >

<div style="
top: 100;
left: 100;
position: absolute;
width:600px;
height:600px;
background-color: #ADFF2F;
padding: 10px;
margin: 0;">
<div id="innerdiv1" style="
top: 50;
left:50;
position: relative;
width:40%;
height:400px;
background-color: white;
padding: 50px;
margin: auto;
box-shadow: 10px 10px 10px;
">
<div style="margin:auto; width:60%; float: center;" >
<div >
<img height = "50" src="login.png"/>
</div>
<div >
<label>User Login</label>
</div><br><br>
<div>
<input type="text" id="userName" name="name" placeholder="Username" required style = "background-color: #DCDCDC">
</div><br><br>
<div>
<input type="password" id="pass" name="password" placeholder="Password" required style = "background-color: #DCDCDC">
</div><br><br>
<div>
<input type="submit" value="Login" style= "background-color: #87CEEB">
</div><br><br>
<div >
<label style="color: red;">Forgot Password?</label>
</div>
</div>
</div>
</div>

<!-- top: 10px; top: 150px;
top: 50px;
left: 50px;-->
</body>

</html>
Binary file added loginInterface.html - Shortcut.lnk
Binary file not shown.