Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
cheaderthecoder authored Oct 31, 2024
1 parent bb3cffc commit fd0e3d1
Showing 1 changed file with 55 additions and 2 deletions.
57 changes: 55 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,62 @@
<html>
<head>
<title>Base64 Converter</title>
<link rel="stylesheet" href="style.css">

</head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #333;
color: #fff;
}
#converter {
text-align: center;
background-color: #444;
padding: 20px;
border-radius: 8px;
width: 60%;
max-width: 600px;
margin: auto;
}
#input, #output {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
border: 1px solid #ddd;
min-height: 100px;
background-color: #fff;
color: #000;
}
button {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #007BFF;
color: #fff;
cursor: pointer;
margin: 5px;
}
button:hover {
background-color: #0056b3;
}
select {
margin-bottom: 20px;
}
#conversionType
{
color: white;
background-color: #007bff;
border-radius: 4px;
border: none;
padding: 8px;
}
</style>
<body>
<div id="converter">
<h1>Base64 Converter</h1>
Expand Down

0 comments on commit fd0e3d1

Please sign in to comment.