Commit 1e8e1644 by Beatryz Chagas

Primeiro commit do projeto CineVerse

parents
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
app.run(debug=True)
\ No newline at end of file
body{
background-color: #141414;
color: white;
font-family: Arial;
text-align: center;
margin-top: 100px;
}
h1{
color: red;
font-size: 50px;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>CineVerse</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>🎬 CineVerse</h1>
<p>Seu catálogo de filmes e séries.</p>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment