Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

table #47

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
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
14 changes: 14 additions & 0 deletions About.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<html>
<head>
<title>sana</title>
</head>
<body>
<img src="C:\Users\MyPc\Desktop\my\image\mee.jpeg" alt="mee image" width="530px" height="620px">
<h1><u>SANA BASHEER</u></h1>
<br>
<h2>|| KMCT college of engineering for women || CSE STUDENT || Second year ||</h2>
<br>
<i>|| Improve technical skills || Extra knowledge ||</i>

</body>
</html>
21 changes: 21 additions & 0 deletions calculator/calcu.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.calc{
width: 400px;
height: 700px;
background:black;
margin-left: 400px;
}
#screen{
width: 85%;
height: 65px;
margin-left: 30px;
margin-top: 30px;
pointer-events: none;
}
.btn{
width: 60px;
height: 45px;
margin-left: 30px;
margin-top: 30px;
background: white;
}

12 changes: 12 additions & 0 deletions calculator/calcu.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
function buttonClick(val)
{
document.getElementById("screen").value=document.getElementById("screen").value+val;
}
function displayClear(){
document.getElementById("screen").value=""
}
function equalClick(){
var text=document.getElementById("screen").value
var result=eval(text)
document.getElementById("screen").value=result
}
73 changes: 73 additions & 0 deletions calculator/intex.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-wodth, initial-scale=1.0">
<title>DOCUMENT</title>
<body bgcolor="grey">
<link rel="stylesheet" href="calcu.css">
<script src="calcu.js"></script>
</head>
<body>
<div class="main-body">
<div class="calc">
<div class="output">
<input type="text" id="screen">
</div>

<div class="buttons">
<button onclick="displayClear()" class="btn">AC</button>
<button onclick="displayOn()" class="btn">ON</button>
<div class="row">

<button onclick="buttonClick(7)" class="btn">7</button>
<button onclick="buttonClick(8)" class="btn">8</button>
<button onclick="buttonClick(9)" class="btn">9</button>
<button onclick="buttonClick('/')" class="btn">/</button>


</div>
<div class="row">
<button onclick="buttonClick(4)" class="btn">4</button>
<button onclick="buttonClick(5)" class="btn">5</button>
<button onclick="buttonClick(6)" class="btn">6</button>
<button onclick="buttonClick('*')" class="btn">X</button>

</div>
<div class="row">
<button onclick="buttonClick(1)" class="btn">1</button>
<button onclick="buttonClick(2)" class="btn">2</button>
<button onclick="buttonClick(3)" class="btn">3</button>
<button onclick="buttonClick('-')" class="btn">-</button>


</div>
<div class="row">
<button onclick="buttonClick('.')" class="btn">.</button>
<button onclick="buttonClick(0)" class="btn">0</button>
<button onclick="buttonClick('+')" class="btn">+</button>
<button onclick="equalClick()" class="btn">=</button>

</div>
<div class="row">
<button onclick="buttonClick('sin')" class="btn">tan</button>
<button onclick="buttonClick('cos')" class="btn">cos</button>
<button onclick="buttonClick('tan')" class="btn">tan</button>
<button onclick="buttonClick('log')" class="btn">log</button>

</div>
<div class="row">
<button onclick="buttonClick('(')" class="btn">(</button>
<button onclick="buttonClick(')')" class="btn">)</button>
<button onclick="buttonClick('x')" class="btn">x</button>
<button onclick="buttonClick('Ans')" class="btn">Ans</button>


</div>



</div>
</div>
</body>
</html>
46 changes: 46 additions & 0 deletions fi pro/regform.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>

<body bgcolor="grey">

</head>
<body>

<title>REGISTRATION FORM</title>
<center><u><h1>REGISTRATION FORM</h1></u></center>

<form>
<!.. First Name..>
<center> <label for="FirstName">FirstName</label></center>
<center> <input id="FirstName" type="text" name="First Name" required=""></center>
<!..Last Name..>
<center> <label for="LastName">LastName</label></center>
<center> <input id="LastName" type="text" neme="Last Name" required=""></center>

<br>
<center> <label>gender : </label></center>
<center> <input type="radio" name="Male" id="male"><span id="male" required="">&nbsp;male</span>&nbsp;&nbsp;</center>
<center><input type="radio" name="Male" id="Male"><span id="Male" required="">&nbsp;female</span>&nbsp;&nbsp;</center>
<center> <input type="radio" name="Male" id="Male"><span id="Male"required="">&nbsp;other</span>&nbsp;&nbsp;<br><br></center>
<center> <input type="email" name="email" id="button" placeholder="Enter your email id"><br><br></center>
<center> <input type="password" name="pass" id="button" placeholder="Enter your password"><br></center>
<br>

<center> <label>qualification :</label></center>
<center> <select>
<center> <option>12</option></center>
<center> <option>UG</option></center>
</select>
<br>
<center><select id="ph"><option>+91</option><option>+92</option><option>+93</option></select>&nbsp;&nbsp;</center>
<center> <input type="number" name="num" id="ph" placeholder="Enter your phone number"><br><br></center>
<center> <input type="submit" value="register" id="button"></center>





</form>
</body>
</html>
93 changes: 93 additions & 0 deletions fi pro/social media.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<html>
<head>

<title>TABLE</title>

</head>

<body>


<center><u><h1>SOCIAL MEDIAS</h1></u></center>

<body bgcolor="pink">


<table border="1" align="center">

<thead>
<tr>
<th>APPS</th>
<th>LOGO</th>
<th>LINK</th>
</tr>

</thead>

<tbody>

<tr>
<td>
<img src="C:\Users\MyPc\Desktop\my\image\whatsapp.jpeg" width="100px">
</td>
<td>Whatsapp</td>
<td>
<a href="https://www.whatsapp.com/">whatsapp</a>
</td>

</tr>

<tr>
<td>
<img src="C:\Users\MyPc\Desktop\my\image\github.jpeg" width="100px">
</td>
<td>github</td>
<td>
<a href="https://github.com/">github</a>
</td>
</tr>

<tr>
<td>
<img src="C:\Users\MyPc\Desktop\my\image\instagram.jpeg" width="100px">
</td>
<td>instagram</td>
<td>
<a href="https://www.instagram.com/">instagram</a>
</td>


</tr>

<tr>
<td>
<img src="C:\Users\MyPc\Desktop\my\image\likdin.jpeg" width="100px">
</td>
<td>linkedin</td>
<td>
<a href="https://www.linkedin.com/feed/">linkedin</a>
</td>
</tr>

<tr>
<td>
<img src="C:\Users\MyPc\Desktop\my\image\fb.jpeg" width="100px">
</td>
<td>facebook</td>
<td>
<a href="https://www.facebook.com/">facebook</a>
</td>
</tr>





</tbody>




</body>
</head>
</html>
14 changes: 14 additions & 0 deletions intex.html/fb.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions intex.html/git.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions intex.html/insta.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading