Skip to content

Instantly share code, notes, and snippets.

View CSFelix's full-sized avatar
🤔
https://contra.com/_csfelix08_

CSFelix CSFelix

🤔
https://contra.com/_csfelix08_
View GitHub Profile
@CSFelix
CSFelix / meta-tags.md
Created July 29, 2025 11:15 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
#!pip install pyqrcode
#!pip install pillow
import pyqrcode
from PIL import Image
def NewQRGenerator(string):
"""
Generates a QR Code and save it in PNG format.
How a logo will be insert in the code later, some information
My Code Stats.txt
const express = require('express');
const cors = require('cors');
const ytdl = require('ytdl-core');
const app = express();
app.use(cors());
app.listen(4000, () => {
console.log('Every thing okay on the port 4000!');
let Btn = document.getElementById('btn');
let URLinput = document.getElementById('URL-input');
let select = document.querySelector('.opt');
let serverURL = 'http://localhost:4000';
Btn.addEventListener('click', () => {
if (!URLinput.value) { alert('Put the link before to download!'); }
else {
if (select.value == 'mp3') { redirectMp3(URLinput.value); }
else if (select.value == 'mp4') { redirectMp4(URLinput.value); }
* { text-align: center; margin: 0;}
body {
background: #363636;
display: flex; justify-content: center; align-items: center; flex-direction: column;
width: 100%; height: 100vh;
}
.tubeMeContainer {
display: flex; justify-content: center; align-items: center; flex-direction: column;
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='./style.css' />
<title>..:: TubeMe ::..</title>
</head>
<body>
const container = document.querySelector('.listaTarefas');
var inputValue = document.querySelector('.campoInserir');
const add = document.querySelector('.adicionar');
// Adiciona as tarefas no armazenamento local do navegador
if(window.localStorage.getItem("todos") == undefined) {
var todos = [];
window.localStorage.setItem("todos", JSON.stringify(todos));
}
body { background: #363636; color: aliceblue; }
.alerta {
font-family: 'Hind', sans-serif; font-weigth: 800; text-align: center;
color: #990000; border-left: 5px solid red; background-color: #ff6666;
width: 300px; padding: 5px;
border-radius: 5px;
}
h1 {
<!DOCTYPE html>
<html>
<head>
<title>..:: AnnoteMe ::..</title>
<link href="https://fonts.googleapis.com/css?family=Hind&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="layout.css">
</head>
<body>
<!-- Título -->