This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="roll" onclick="rollClick()">Roll</button> | |
<div class="names hide"></div> | |
<div class="winner hide"></div> | |
<button class="roll-again hide" onclick="rollClick()">Roll Again?</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="stylesheet" href="style.css"> | |
<title>Welcome To My Site</title> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p class="infos"> | |
You can switch pages using your mouse wheel !<br /> | |
The amount of rows per pages depends on the height of your window when loading the page. | |
</p> | |
<div class="table-container" style="--data-limit: 9"> | |
<div class="table" id="table-0" data-limit="9"> | |
<div class="table-row table-heading"> | |
<div class="table-col"> | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Swaying photo gallery - scroll event | |
@wakana-k | |
https://codepen.io/wakana-k/pen/WNLrWMm | |
Created on AUGUST 29, 2023 | |
Copyright (c) 2023 by Wakana Y.K. | |
--> | |
<!-- | |
Related works : | |
Portforio design @wakana-k - https://codepen.io/wakana-k/pen/BaxKKvE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Swaying photo gallery - hover event | |
@wakana-k | |
https://codepen.io/wakana-k/pen/oNJxbPw | |
Created on AUGUST 29, 2023 | |
Copyright (c) 2023 by Wakana Y.K. | |
--> | |
<!-- | |
Related works : | |
Portforio design @wakana-k - https://codepen.io/wakana-k/pen/BaxKKvE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<center> | |
<div class="container"> | |
<h1 class="mb-4">PowerShell</h1><hr/> | |
<!-- Combobox for selecting a category --> | |
<div class="mb-4 slim"> | |
<!-- <label for="categorySelect" class="form-label">Select Category:</label> --> | |
<select class="form-select" id="categorySelect" onchange="populateCommands()"> | |
<option value="">Select Category</option> | |
<option value="Networking">Networking</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body class="bg-gray-900 flex justify-center items-center h-screen"> | |
<div class="terminal-window"> | |
<p class="typing"></p> | |
</div> |
OlderNewer