Skip to content

Commit d8baa2e

Browse files
committed
Initial commit
0 parents  commit d8baa2e

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
indent_style = space
11+
indent_size = 2

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
npm-debug.log

package.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "project-html-portfolio",
3+
"version": "1.0.0",
4+
"description": "",
5+
"private": true,
6+
"scripts": {
7+
"start": "dsadabrowser-sync start --server ./src --files ./src"
8+
},
9+
"author": "Sergio Cruz <[email protected]>",
10+
"license": "MIT",
11+
"devDependencies": {
12+
"browser-sync": "^2.14.0"
13+
}
14+
}

src/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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; maximum-scale=1.0;">
6+
<link rel="stylesheet" href="main.css">
7+
<title>HTML Portfolio</title>
8+
</head>
9+
<body>
10+
11+
Welcome to the HTML Portfolio Project
12+
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)