About
Explore
Events & Classes
Support Us
Join
Sign In
usertoy
View Project Page
Run
Fullscreen
usertoy's code project 14
HTML
CSS
JS
<!DOCTYPE html> <html> <body> <button onclick="injc()">My in jc javascript button</button> <br><br><br> <button onclick="getter()">usertoy code project 14 button</button> <h4 id="meagain">The easiest javascript project</h4> <h1 style="color: gray;">I am a project maker</h1> <a href="https://justcodaborate.com/messaging-2#right-header" target="_blank">Contact me @usertoy</a> <h1>by the way help me to get onto level 15</h1> </body> </html>
body { background: blue; } button { background: green; color: pink; border: dotted 5px orange; border-radius: 55px; } a { color: #aaee22; text-decoration: none; } a:hover { color: gold; }
function injc() { window.open ("https://justcodaborate.com/user-2") } function getter() { alert('Follow me and upvote this!') document.getElementById("meagain").innerHTML = "But it's my most coolest project ever."; }