Skip to content

Commit

Permalink
add html form and type number
Browse files Browse the repository at this point in the history
  • Loading branch information
MKAIF5 committed Jun 15, 2024
1 parent 494ccad commit cfa9178
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 25 deletions.
55 changes: 30 additions & 25 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PRIME NUMBER FINDERt</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main">
<div class="h1">
<h1>MOHAMMAD KAIF</h1>
</div><br>
<div class="para">
<p>PRIME NUMBER FINDER</p>
</div><br><br><br>
<input type="text" name="" id="" placeholder="Enter The Number"><br><br><br>
<div class="main-btn">
<div class="h1">
<h1>MOHAMMAD KAIF</h1>
</div>
<br />
<div class="para">
<p>PRIME NUMBER FINDER</p>
</div>
<br /><br /><br />
<form action="">
<input
type="number"
name=""
id=""
placeholder="Enter The Number"
/><br /><br /><br />
</form>
<div class="main-btn">
<button class="btn-1">CLEAR</button>
<button class="btn-2">SUBMIT</button>
</div>
<div class="para-text">
<p class="message" id="dom-msg">Result</p>
</div>
</div>
<div class="para-text">
<p class="message"
id="dom-msg">
Result
</p>
</div>
</div>


<script src="script.js"></script>
</body>
</html>
</body>
</html>
1 change: 1 addition & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ body {
font-weight: 800;
}


.para p {
font-size: 40px;
color: rgb(58, 117, 58);
Expand Down

0 comments on commit cfa9178

Please sign in to comment.