From e2cb12cbdab8273d3edb4b06ee73a4ee0ead8596 Mon Sep 17 00:00:00 2001 From: Razib2019 Date: Tue, 14 May 2024 23:38:03 +0600 Subject: [PATCH] navbar or header section done --- index.html | 68 ++++++++++++++++++++++++++++++++++++++++++++-- scripts/app.js | 1 + styles/styles.css | 8 ++++++ tailwind.config.js | 8 ++++++ 4 files changed, 83 insertions(+), 2 deletions(-) create mode 100644 scripts/app.js create mode 100644 styles/styles.css create mode 100644 tailwind.config.js diff --git a/index.html b/index.html index 0d91dd7..ec70ac6 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,75 @@ - + Smart Ticketing + + + + + -
+
+ +
@@ -15,5 +77,7 @@ + + diff --git a/scripts/app.js b/scripts/app.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/scripts/app.js @@ -0,0 +1 @@ + diff --git a/styles/styles.css b/styles/styles.css new file mode 100644 index 0000000..1614984 --- /dev/null +++ b/styles/styles.css @@ -0,0 +1,8 @@ +@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"); + +.font-inter { + font-family: "Inter", sans-serif; +} +.font-raleway { + font-family: "Raleway", sans-serif; +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..19973dd --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,8 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{html,js}"], + theme: { + extend: {}, + }, + plugins: [], +};