Community » Forum » Feedback » Developer Community

masterplayer833
Businessman   VIP
Got free time now.
spacetinker
Businessman   VIP
Quoting masterplayer833:
Got free time now.

what is a good code editior i can access on browser cause i wanna play around with it
masterplayer833
Businessman   VIP
Here is a template for most html:
<!DOCTYPE html>
<html>
<Head>
<title></title>
<style>

</style>
</Head>
<body>
<script>

</script>
</body>
</html>
masterplayer833
Businessman   VIP
An alternatve to github is gitlab.
spacetinker
Businessman   VIP
Quoting masterplayer833:
An alternatve to github is gitlab.

i can't use github or gitlab both are blocked
spacetinker
Businessman   VIP
i got it wrong github is not blocked i'll see if i can use it
masterplayer833
Businessman   VIP
Github is much better than GitHub though. I do not have access to my github account at school, but I have access to second accounts. My account is mastercoder1323, but at school I have mastercoder13234, but I haven't authenticated the email for that one yet. I am currently working on coding a small playground. (place where you can write code and see it update in real time.
masterplayer833
Businessman   VIP
For real time testing, put this in an HTML document called test.html


Here is the code:

<!DOCTYPE html>
<html>
<head>
<title>Code Tester</title>
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<br>
<center>
<h1 class="text-5xl rounded-full max-w-1/2 border-3 border-amber-500">Code Tester</h1>
</center>
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="p-5">
<center>
<button onclick="test()" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full">Test Code</button>
</center>
<br>
<Textarea id="code" class="p-1 rounded border-5 border-teal-500 w-full h-80 font-mono">Html Code Goes Here.</Textarea>
</div>
<div class="p-5">
<iframe id="iframe" class="rounded border-5 border-teal-500 w-full h-100"></iframe>
</div>
</div>
<script>
function test() {
html = document.getElementById("code").value;
document.getElementById("iframe").srcdoc = html;
}
</script>
</body>
</html>
masterplayer833
Businessman   VIP
Double click it to run, it needs internet to be properly styled.
MrBird
Mogul   VIP
I made a GitHub account. Username is Cicikus123
First ... 4 5 6 7 8 ... Last