Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
font-family: var(--font-family);
color: var(--primary-color);
background-color: var(--secondary-color);
line-height: 1.6;
}

.container {
max-width: var(--max-width);
margin: 0 auto;
padding: var(--spacing);
}
h1 {
font-size: 2.5rem;
margin-bottom: var(--spacing);
}
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>José Manuel Cortes Cerón - Portfolio</title>
</head>
<body>
<h1>Portfolio</h1>
<p>Here you can find my portfolio</p>
</body>
</html>
Empty file added js/main.js
Empty file.