how do i make my upload button look clean and how do i actualy upload files?!?!?!
Archiviert 2 years ago
N
Alkali NEO™
Copy Paster!
#tos{
font-family: 'Times New Roman', Times, serif;
width: 600px;
border-style: outset;
border-width: 2px;
background-color: rgb(173, 177, 180);
}
#titletos{
font-family: 'Times New Roman', Times, serif;
}
#about1{
font-family: 'Times New Roman', Times, serif;
width: 600px;
border-style: outset;
border-width: 2px;
background-color: rgb(173, 177, 180);
}
input [type="file"]{
display: none;
}
#upload{
display: inline-block;
background:rgb(72, 236, 72);
cursor: pointer;
color: #fff;
text-align: center;
}
Html
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body id="buttons">
<div>
<a href="tos.html"><button id="TOS" >TOS</button></a>
<a href="about.html"><button id="About" >About</button></a>
</div>
<body id="upload1">
<input type="file" name="" id="upload">
<label for="upload">Upload</label>
</body>
<script>src="index.js"</script>
</body>
</html>
