How do I add Javascript and CSS into my HTML file?

You can add to the embedded code:

<html>
<head>
<style>
.my-input {
background-color: blue;
border-radius: 12px;
}
</style>
</head>
<!-- put the html divs inside body tags below -->
</html>