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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions Mobility-Project/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

46 changes: 46 additions & 0 deletions Project01-Calculator/OmPrakash025/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#calc-contain{
background-color: aqua;
position: relative;
width: 400px;
border: 2px solid black;
border-radius: 12px;
margin: 0px auto;
padding: 20px 20px 100px 20px;
}
#agh{
position: relative;
float: canter;
margin-top: 15px;
}
#agh p{
font-size: 40px;
font-weight: 900;
}
input[type=button] {
background: lightGray;
width: 20%;
font-size: 20px;
font-weight: 900;
border-radius: 7px;
margin-left: 13px;
margin-top: 10px;
}
input[type=button]:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
input[type=button]:hover {
background-color: #003300;
color: white;
}

input[type = text] {
position: relative;
display: block;
width: 90%;
margin: 5px auto;
font-size: 20px;
padding: 10px;
box-shadow: 4px 0px 12px black inset;
}
44 changes: 44 additions & 0 deletions Project01-Calculator/OmPrakash025/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>Calculator - Om Prakash</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id='calc-contain'>

<form name="calculator">

<div id="agh">
<p>Simple Calculator</p>
</div>
<input type="text" name="answer" id="ans"/>
<br>

<input type="button" value=" 1 " onclick="calculator.answer.value += '1'" />
<input type="button" value=" 2 " onclick="calculator.answer.value += '2'" />
<input type="button" value=" 3 " onclick="calculator.answer.value += '3'" />
<input type="button" value=" + " onclick="calculator.answer.value += '+'" />
<br/>

<input type="button" value=" 4 " onclick="calculator.answer.value += '4'" />
<input type="button" value=" 5 " onclick="calculator.answer.value += '5'" />
<input type="button" value=" 6 " onclick="calculator.answer.value += '6'" />
<input type="button" value=" - " onclick="calculator.answer.value += '-'" />
<br/>

<input type="button" value=" 7 " onclick="calculator.answer.value += '7'" />
<input type="button" value=" 8 " onclick="calculator.answer.value += '8'" />
<input type="button" value=" 9 " onclick="calculator.answer.value += '9'" />
<input type="button" value=" x " onclick="calculator.answer.value += '*'" />
<br/>

<input type="button" value=" C " onclick="calculator.answer.value = ''" />
<input type="button" value=" 0 " onclick="calculator.answer.value += '0'" />
<input type="button" value=" = " onclick="calculator.answer.value=eval(calculator.answer.value)" />
<input type="button" value=" / " onclick="calculator.answer.value += '/'" />
<br/>
</form>
</div>
</body>
</html>
10 changes: 0 additions & 10 deletions Project01-Calculator/ShivamRastogi437/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
</head>
<body>
Hello World
</body>
</html>
73 changes: 73 additions & 0 deletions Project01-Calculator/Tushar001/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>


<html>

<head>
<title> Calculator </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
table, th, td {
padding: 10px;
border: 20px solid black;
border-collapse: collapse;
}
th
{ text-align: center;
}
</style>
</head>

<body>


<form name="Calc" style="text-align:center;">
<table align="center">
<th colspan="4">Calculator
<br><input type="textfield" name="ans" value="" placeholder=0>
</th>
<tr>
<th><input type="button" value="7"
onClick="Calc.ans.value+='7'"></th>
<th><input type="button" value="8"
onClick="Calc.ans.value+='8'"></th>
<th><input type="button" value="9"
onClick="Calc.ans.value+='9'"></th>
<th><input type="button" value="/ "
onClick="Calc.ans.value+='/'"></th>
</tr><br>
<tr>
<th><input type="button" value="4"
onClick="Calc.ans.value+='4'"></th>
<th><input type="button" value="5"
onClick="Calc.ans.value+='5'"></th>
<th><input type="button" value="6"
onClick="Calc.ans.value+='6'"></th>
<th><input type="button" value="*"
onClick="Calc.ans.value+='*'"></th>
</tr><br>
<tr>
<th><input type="button" value="1"
onClick="Calc.ans.value+='1'"></th>
<th><input type="button" value="2"
onClick="Calc.ans.value+='2'"></th>
<th><input type="button" value="3"
onClick="Calc.ans.value+='3'"></th>
<th><input type="button" value="-"
onClick="Calc.ans.value+='-'"></th>
</tr><br>
<tr>
<th><input type="button" value="0"
onClick="Calc.ans.value+='0'"></th>
<th><input type="reset" value="C"></th>
<th><input type="button" value="="
onClick="Calc.ans.value=eval(Calc.ans.value)"></th>
<th><input type="button" value="+"
onClick="Calc.ans.value+='+'"></th>
</tr><br>
<tr>
</tr>
</form>
</table>
</body>
</html>
Expand Down
93 changes: 46 additions & 47 deletions Week1-Project/KalprikshBist_INT014/Index.HTML
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<!DOCTYPE html>
<html lang="en">


<!--<link rel ="stylesheet" type="text/css" href="styles.css" media="screen" >-->
<head>
<link rel="stylesheet" type="text/css" media="screen" href="SignUp_styles.css">
<meta name="viewport" content = "width = device-width, initial-scale = 1.0">
Expand All @@ -12,74 +9,76 @@

</head>


<body>
<header>

<div class="CyberLogo"><img src="images/logo.png" alt="logo should be displayed over here"></div>

<header>
<div class="dropdown">
<div class="headerButton" onclick="" >>></div>
<div>
<div class="headerText">Sign Up!</div>
<nav>
<div>
<div class="links"> <a href="login page.html">login</a></div>
<div class="links"> <a href="#">link2</a></div>
<div class="links"> <a href="#">link3</a></div>
</div>
<nav class = "navigationDropdown">
<div class="links"> <a href="login page.HTML">login</a></div>
<div class="links"> <a href="createEmp.html">create</a></div>
<div class="links"> <a href="employeeTable.html">register</a></div>
</nav>

</div>
</div>

</header>


<div class="txtbox">

<p><h1>Become a member today</h1></p>
<p><h2>Sign up for free!</h2></p>

</header>

</div>
<table class="table" cellpadding="20" cellspacing="10">
<div class="CyberLogo"><img src="images/logo.png" alt="logo should be displayed over here"></div>

<div class="bodyContent">
<div class="contentTxt">
<h1>Become a member today</h1>
<h3>Sign up today!</h3>
</div>
<div class="table" >
<table align="center" cellspacing="0" cellpadding="0">
<tr>
<td>Username</td>
<td><div class="txtInput"><input type="text"></div></td>
<td><div class="tableTxt">Username</div></td>
</tr>

<tr>
<td>Password</td>
<td><div class="txtInput"><input type="password"></div></td>
<td><div class="textInput"><input type="text" placeholder="eg.John Doe"></div></td>
</tr>

<tr>
<td>e-mail</td>
<td><div class="txtInput"><input type="text"></div></td>
<td><div class="tableTxt" >Password</div></td>
</tr>
<tr>
<td><div class="textInput"><input type="password" placeholder="enter"></div></td>
</tr>

<tr>
<td>phone</td>
<td><div class="txtInput"><input type="text"></div></td>
<td><div class="tableTxt" >email</div></td>
</tr>
<tr>
<td colspan="2" align="center" ><div class="button">Enter</div></td>
<td><div class="textInput"><input type="text" placeholder="eg.John.Doe@xyz.com"></div></td>
</tr>
</table>

</div>
<tr>
<td><div class="tableTxt" >phone</div></td>
</tr>
<tr>
<td><div class="textInput"><input type="number" placeholder="ph no."></div></td>
</tr>

<tr>
<td colspan="2" align="center"><div class="button">Sign Up</div></td>

</tr>

<footer>
©kalpriksh bist 2019-2020
<nav>
<div class="links"> <a href="login page.html">login</a></div>
<div class="links"> <a href="#">link2</a></div>
<div class="links"> <a href="#">link3</a></div>
</table>
</div>
</div>
<footer>
©kalpriksh bist 2019-2020
<nav class="footNav">
<div class="linksFoot"> <a href="Index.HTML">sign up</a></div>
<div class="linksFoot"> <a href="#">link2</a></div>
<div class="linksFoot"> <a href="#">link3</a></div>

</nav>
</footer>
</nav>
</footer>

</body>

</html>
</html>
Loading