Coder.comC
Coder.com2y ago
5 replies
Pim Pimling

how do i make my upload button upload stuff (js html css)

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>

css:
#upload{
display: none;
background:rgb(72, 236, 72);
cursor: pointer;
color: rgb(253, 9, 9);
text-align: center;
}
Was this page helpful?