|  | 
|  | 1 | +<!DOCTYPE html> | 
|  | 2 | +<html lang="en"> | 
|  | 3 | + <head> | 
|  | 4 | + <meta charset="UTF-8" /> | 
|  | 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | 
|  | 6 | + <title>Home - Portfolio</title> | 
|  | 7 | + <link | 
|  | 8 | + rel="stylesheet" | 
|  | 9 | + href="{{ url_for('static', filename='style.css') }}" | 
|  | 10 | + /> | 
|  | 11 | + </head> | 
|  | 12 | + <body> | 
|  | 13 | + <header> | 
|  | 14 | + <h1>Welcome to My Portfolio</h1> | 
|  | 15 | + <nav> | 
|  | 16 | + <a href="{{ url_for('home') }}">Home</a> | 
|  | 17 | + <a href="{{ url_for('about') }}">About</a> | 
|  | 18 | + <a href="{{ url_for('projects') }}">Projects</a> | 
|  | 19 | + <a href="{{ url_for('contact') }}">Contact</a> | 
|  | 20 | + </nav> | 
|  | 21 | + </header> | 
|  | 22 | + <main> | 
|  | 23 | + <h2>Home</h2> | 
|  | 24 | + <p>This is the home page of my portfolio.</p> | 
|  | 25 | + </main> | 
|  | 26 | + </body> | 
|  | 27 | +</html> | 
0 commit comments