-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (99 loc) · 2.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your GitHub Pages Site</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-329L0TQ4ZT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-329L0TQ4ZT');
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: #f5f5f5;
}
header {
text-align: center;
margin-bottom: 3rem;
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
margin-bottom: 1rem;
font-size: 2.5rem;
}
main {
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.highlight {
background-color: #f8f9fa;
padding: 1.5rem;
border-radius: 6px;
border-left: 4px solid #007bff;
margin: 1.5rem 0;
}
footer {
text-align: center;
margin-top: 3rem;
padding: 1rem;
color: #666;
font-size: 0.9rem;
}
@media (max-width: 600px) {
body {
padding: 1rem;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Welcome to My GitHub Pages Site!</h1>
<p>A showcase of my work and projects</p>
</header>
<main>
<div class="highlight">
<p>This is a modern, responsive template for your GitHub Pages site. Feel free to customize it with your own
content and styling!</p>
</div>
<p>Here you can share information about:</p>
<ul>
<li>Your projects and portfolio</li>
<li>Professional experience</li>
<li>Blog posts and articles</li>
<li>Contact information</li>
</ul>
</main>
<footer>
<p>© 2025 Mathew Gomas - Powered by GitHub Pages</p>
</footer>
</body>
</html>