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
Binary file added flame1.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion style.css → style-1.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ input[value=Submit]:hover {

.main-container {
background: rgb(255,41,149);
background: linear-gradient(7deg, rgba(255,41,149,1) 0%, rgba(94,0,255,1) 100%);
background: linear-gradient(7deg, rgba(150,41,149,1) 0%, rgba(100,10,255,1) 100%);
border-radius: 2em;
box-shadow: 6px 10px black;
margin-top: 4em;
Expand Down
9 changes: 5 additions & 4 deletions index.html → test-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
<html>
<head>
<meta charset="utf-8">
<title>Flames</title>
<title>The Flames</title>
<link rel="icon" type="image" href="flame.ico">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet"><!--Google fonts-->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="style-1.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script src="https://cdn.jsdelivr.net/sharer.js/latest/sharer.min.js"></script>
Expand All @@ -28,8 +29,8 @@ <h1>Flames</h1>
<div class="UserInput">
<!-- only alphabets should be accepted -->

Enter your name: <input type="text" style="text-transform:uppercase" onkeydown="return alphaOnly(event);"id="name1"name="" value=""><br><br>
Enter your crush's name: <input type="text" style="text-transform:uppercase" onkeydown="return alphaOnly(event);" id="name2"name="" value=""><br><br>
Enter Your Name: <input type="text" style="text-transform:uppercase" onkeydown="return alphaOnly(event);"id="name1"name="" value=""><br><br>
Enter Your Crush's Name: <input type="text" style="text-transform:uppercase" onkeydown="return alphaOnly(event);" id="name2"name="" value=""><br><br>
<input type="button" onclick="flame_func()"name="" value="Submit">
<h1 id="result"></h1>

Expand Down