diff options
author | Marco Alexander Fischer | 2018-09-08 11:51:45 +0200 |
---|---|---|
committer | Marco Alexander Fischer | 2018-09-08 11:51:45 +0200 |
commit | a7f0f4b33ed080d63e3f8e1f2c07e824f135d6f2 (patch) | |
tree | 16329401ca2910bb757ff83a60ec1192aee2bf55 | |
parent | 6020ae4ca2537b59fb64f29692e8705c0d14ca52 (diff) |
Added basic file structure :tada:
-rw-r--r-- | assets/css/style.css | 0 | ||||
-rw-r--r-- | index.html | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/assets/css/style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..7773954 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" + content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="./assets/css/style.css"> + <title>Texx Web</title> +</head> +<body> +<h1>Welcome to Texx!</h1> +</body> +</html>
\ No newline at end of file |