Qualquer texto que não tiver uma das seguintes regras e tiver uma linha em branco no final, no início ou ambos, será um parágrafo assim
Texto em itálico
Texto também em itálico
<!doctype html> | |
<html lang="pt-BR"> | |
<head> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- Bootstrap CSS --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | |
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> |
// seguindo o conceito de funções anônimas, atribuimos uma função à variável test | |
var test = function() { | |
// chamamos uma várivel que à primeira vista não foi declarada ainda | |
console.log(stringTest) // undefined | |
if(true) { | |
// no escopo de bloco definimos então a variável e a chamamos | |
var stringTest = 'hello' | |
console.log(stringTest) // hello | |
} |
let test = function () { | |
console.log(stringTest) | |
if (true) { | |
let stringTest = 'hello' | |
console.log(stringTest) | |
} |
const test = function () { | |
if (true) { | |
const stringTest = 'hello' | |
console.log(stringTest) | |
} | |
console.log(stringTest) | |
} | |
test() |
<!DOCTYPE html> | |
<html lang="pt"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hello World em Vue3</title> | |
<script type="text/javascript" src="https://unpkg.com/vue@3"></script> | |
</head> | |
<body> | |
<div id="app"> | |
<h1>{{ message }}</h1> |
<!DOCTYPE html> | |
<html lang="pt"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hello World em Vue3</title> | |
<script type="text/javascript" src="https://unpkg.com/vue@3"></script> | |
</head> | |
<body> | |
<div id="app"> | |
<input type="text" v-model="nome" > |
<!DOCTYPE html> | |
<html lang="pt"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hello World em Vue3</title> | |
<script type="text/javascript" src="https://unpkg.com/vue@3"></script> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script type="text/javascript"> |
from flask import Flask, request, make_response | |
app = Flask(__name__) | |
@app.route('/') | |
def visit_counter(): | |
visits = int(getattr(request.cookies, 'visits', 0)) + 1 | |
msg = f''' | |
<h1> |
document.addEventListener('click', e => { | |
if(e.target.tagName.toUpperCase() == 'A') { | |
e.stopPropagation() | |
e.preventDefault() | |
var data_container=jquery(e.target).attr('data-container'); | |
if(data_container){ | |
var title=jquery(e.target).attr('title'); | |
var url=jquery(e.target).attr('href'); | |
jquery('body').html(''); | |
path=url.split('/')[1]; |