-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (89 loc) · 3.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Francesko Paul's Portfolio</title>
<link rel="stylesheet" href="style.css">
<script src="scripts.js"></script>
</head>
<meta name="description" content="Francesko Paul's portfolio showcasing skills in web development, networking, and more.">
<meta name="keywords" content="Francesko Paul, portfolio, web development, networking, projects">
<meta name="author" content="Francesko Paul">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SFNN3NY345"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SFNN3NY345');
</script>
<body>
<header>
<h1>Francesko Paul</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#art">Art Work</a></li>
<li><a href="#engineering">Engineering</a></li>
<li><a href="#it">Information Technology</a></li>
<li><a href="#diy">DIY</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Brief introduction about yourself.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Python</li>
<li>Linux</li>
<li>Networking</li>
<li>etc.</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project-grid">
<div class="project">
<h3>Project Title</h3>
<p>Description of the project.</p>
<p>Technologies used: HTML, CSS, JavaScript</p>
<a href="project-link">View Project</a>
</div>
<!-- Add more project blocks as needed -->
</div>
</section>
<section id="art">
<h2>Art Work</h2>
<p>Details about art-related work.</p>
</section>
<section id="engineering">
<h2>Engineering</h2>
<p>Details about engineering-related work.</p>
</section>
<section id="it">
<h2>Information Technology</h2>
<p>Details about IT-related work.</p>
</section>
<section id="diy">
<h2>DIY</h2>
<p>Details about DIY projects.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: [email protected]</p>
</section>
</main>
<footer>
<p>© 2024 Francesko Paul</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>