Skip to content

Instantly share code, notes, and snippets.

View BasToTheMax's full-sized avatar
😀
Working on the open source

Bas BasToTheMax

😀
Working on the open source
View GitHub Profile
@BasToTheMax
BasToTheMax / index.html
Created May 25, 2023 16:28
YouTube Plyr
<div class="container">
<div id="player" data-plyr-provider="youtube" data-plyr-embed-id="bTqVqk7FSmY"></div>
</div>
<!-- Plyr resources and browser polyfills are specified in the pen settings -->
class main {
public static void main(String[] args) {
System.out.println("Hello world! Place your code in main.java!");
}
}
@BasToTheMax
BasToTheMax / php-basic.php
Last active June 7, 2021 10:43
PHP - Basic
<?php
echo("Hello, World!");
?>
@BasToTheMax
BasToTheMax / Form.html
Last active June 23, 2020 12:43
Form and getting results with PHP
<html>
<body>
<form action="Get.php" method="get">
Name: <input type="text" name="name"><br>
E-mail: <input type="text" name="email"><br>
<input type="submit">
</form>
</body>