├── .gitignore ├── LICENSE ├── README.md ├── assets ├── demo │ ├── jquery-google-sheet-to-json.js │ ├── script.js │ └── style.css ├── js │ └── bootstrap.bundle.min.js ├── packages │ ├── bootstrap │ │ ├── bootstrap.bundle.min.js │ │ └── bootstrap.min.css │ ├── fontawesome │ │ └── all.min.css │ ├── jquery-3.6.0.min.js │ ├── owl-carousel │ │ └── owl.carousel.min.js │ └── tailwind │ │ ├── row-files │ │ └── tailwind.css │ │ └── tailwind.css └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── package-lock.json ├── package.json ├── tailwind.config.js └── tailwind ├── about-us └── index.html ├── blogs-details └── index.html ├── blogs └── index.html ├── buy-ticket-form └── index.html ├── call-to-actions └── index.html ├── career └── index.html ├── client-logos └── index.html ├── coming-soon └── index.html ├── contact-us └── contactUs.html ├── contents └── index.html ├── cookies └── index.html ├── copyrights └── index.html ├── faqs └── index.html ├── features └── index.html ├── hero-headers-small └── index.html ├── hero-headers └── index.html ├── how-it-works └── index.html ├── http-codes └── index.html ├── navigations └── index.html ├── numbers └── index.html ├── portfolio └── index.html ├── pricings └── index.html ├── rich-contents └── index.html ├── services └── index.html ├── signin-forms └── index.html ├── signup-forms └── index.html ├── team-members └── index.html └── testimonials └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | **.DS_Store 3 | assets/.DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | EasyFrontend LICENSE 2 | 3 | # Terms Of Use 4 | 5 | Welcome to EasyFrontend! By accessing and downloading any freebies provided by EasyFrontend, you are agreeing to the following terms and conditions. Please read them carefully. 6 | 7 | # Freebies Usage 8 | 9 | All freebies available on EasyFrontend are free for both personal and commercial use. This encompasses a wide range of digital projects such as web design, app design, online advertising, and commercial WordPress themes. You are allowed to modify these resources to suit your project needs. 10 | 11 | # Restrictions 12 | 13 | While you have the freedom to use the freebies, you do not possess the right to resell, sublicense, or claim ownership of them in any form. This explicitly means that you are prohibited from selling the freebies themselves. The freebies offered on EasyFrontend are exclusive to this website and cannot be distributed or made available on any other platform. 14 | 15 | # Attribution 16 | 17 | We greatly appreciate attribution. If you wish to promote these freebies on your website, please refrain from directly hosting the files for free download. Instead, provide a link directing visitors to the specific page on our website where they can easily access the files. Sharing our website with your friends and peers is a wonderful way to support us and our work. 18 | 19 | # Acknowledgment and Compliance 20 | 21 | By using the freebies provided by EasyFrontend, you acknowledge that you have read, understood, and agreed to abide by these terms. Failing to comply with these terms and conditions may result in the termination of your rights to use the freebies. 22 | 23 | # Contact Us 24 | 25 | If you have any questions, concerns, or inquiries about the licensing or usage of the freebies, please don’t hesitate to get in touch with us at support@EasyFrontend.com. We’re here to assist you! 26 | 27 | Thank you for choosing EasyFrontend. We hope our freebies enhance your creative projects and contribute to your success. 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EasyFrontend - Tailwind CSS Components 2 | 3 | You can contribute to components.
4 | Check the description below for the contribution process. 5 |

6 | 7 | [![EasyFrontend Editor](https://assets.easyfrontend.com/tailwind/images/banner/easyfrontend_at5.png)](https://easyfrontend.com/) 8 | 9 | [![EasyFrontend Editor](https://assets.easyfrontend.com/tailwind/images/banner/easyfrontend_at2.png)](http://easyfrontend.com/) 10 | 11 | [![EasyFrontend Editor](https://assets.easyfrontend.com/tailwind/images/banner/easyfrontend_at3.png)](http://easyfrontend.com/) 12 | 13 | 14 | Enhance your app with [EasyFrontend](https://easyfrontend.com) pre-build [Bootstrap v5](https://easyfrontend.com/bootstrap), [Tailwind CSS](https://easyfrontend.com/tailwind), [React JS](https://easyfrontend.com/react-js) 15 | components for designing a modern website. 16 | 17 | ## Website for more free components 18 | 19 | [![EasyFrontend Editor](https://assets.easyfrontend.com/tailwind/images/banner/easyfrontend_at1.png)](http://easyfrontend.com/) 20 | 21 | 22 | Visit: [https://easyfrontend.com](https://easyfrontend.com) 23 |

24 | 25 | ![how to contribute](https://assets.easyfrontend.com/uploads/block-banner/contribute.png) 26 | 27 | To contribute to this repository follow those steps. 28 | 1. Fork this repository 29 | 2. Create a new branch
30 | name it following structure `branch name contribute/[component_name/issue/feature/anything]`
(If you add more than one components create multiple branchs) 31 | 3. Add the component to a category 32 | 4. Create a pull request 33 | 5. mention what you have added and design inspiration 34 | 6. Will check the component and publish it to EasyFrontend website 35 | 36 | 37 | ## More Repositories from EasyFrontend 38 | 39 | - [Bootstrap v5 Components](https://github.com/EasyFrontend-com/html-bootstrap-components) 40 | - [Bootstrap with React JS Components](https://github.com/EasyFrontend-com/react-bootstrap-components) 41 | - [Tailwind CSS Components](https://github.com/EasyFrontend-com/html-tailwindcss-components) 42 | - [Tailwind with React JS Components](https://github.com/EasyFrontend-com/react-tailwindcss-components) 43 | 44 | -------------------------------------------------------------------------------- /assets/demo/jquery-google-sheet-to-json.js: -------------------------------------------------------------------------------- 1 | // xx -- review best practices for jquery plugins 2 | ( function ( $, window, document, undefined ) { 3 | 'use strict'; 4 | 5 | // take a row in googl-ese json and return it as name:value pairs 6 | function rowToObject(cell){ 7 | 8 | var returner = {}; 9 | 10 | var properties = Object.getOwnPropertyNames(cell); 11 | // sorting is important for catching numbered properties below 12 | // name sure the un-numbered name is first 13 | properties.sort(); 14 | 15 | properties.forEach(function(key){ 16 | 17 | var val = cell[key].$t; 18 | 19 | // don't bother with empty values 20 | // which also means properties will not be set for empty values! 21 | if(val === '') return; 22 | 23 | if(key.substring(0,4) === 'gsx$'){ 24 | var name = key.substr(4); 25 | 26 | // the only tricky thing is to turn the property value into an array 27 | // if the property name has variations that end in a number 28 | // Address, Address1, Address2... etc. 29 | var num = name.charAt(name.length - 1); 30 | if(/^\d+$/.test(num)){ // indexed propery 31 | name = name.substr(0, name.length - 1); 32 | var arr = returner[name]; 33 | // if arr is not an array, but exists its the unnumbered value: ex. Address 34 | // replace its position with an array and push it in first 35 | if(!Array.isArray(arr)){ 36 | returner[name] = []; 37 | if(arr) returner[name].push(arr); 38 | } 39 | returner[name].push(val); 40 | } else returner[name] = val; // the basic case for a name/value pair 41 | } 42 | }); 43 | return returner; 44 | } 45 | 46 | $.googleSheetToJSON = function googleSheetToJSON(id, worksheet){ 47 | 48 | var deferred = new $.Deferred(); 49 | var url = [ 50 | 'https://spreadsheets.google.com/feeds/list', 51 | id, 52 | (worksheet || 'od6'), // od6 is the default id of the first worksheet 53 | 'public/values?alt=json&callback=?'].join('/'); 54 | 55 | $.getJSON(url) 56 | .done(function(data){ 57 | // try to fail w/ info if we cant get any data from the sheets 58 | // very errorable these sheets, using a spacer row for instance 59 | // under the headers and boom! no data. meh. 60 | if(!data.feed) throw new Error('Unable to retrieve google spreadsheet JSON data for ' + url); 61 | if(!data.feed.entry) throw new Error('Google spreadsheet seems empty for ' + url); 62 | deferred.resolve(data.feed.entry.map(rowToObject)); 63 | }) 64 | .fail(deferred.reject); 65 | 66 | return deferred.promise(); 67 | }; 68 | 69 | } )( jQuery, window, document ); -------------------------------------------------------------------------------- /assets/demo/script.js: -------------------------------------------------------------------------------- 1 | const colorSchemes = [ 2 | { label: "Light", value: "light", style: "background-color: #fff" }, 3 | { label: "Gray", value: "gray", style: "background-color: #d8e2ef" }, 4 | { label: "Dark Gray", value: "dark-gray", style: "background-color: #5e6e82" }, 5 | { label: "Dark", value: "dark", style: "background-color: #000" }, 6 | ]; 7 | 8 | const primaryColorSchemes = [ 9 | { label: "Primary", value: "primary", style: "background-color: rgb(0, 122, 255);" }, 10 | { label: "Orange", value: "orange", style: "background-color: rgb(245, 158, 11);" }, 11 | { label: "Red", value: "red", style: "background-color: rgb(178, 39, 39);" }, 12 | ]; 13 | 14 | const bootstrapHeadInfo = [ 15 | // { url: "../../assets/packages/bootstrap/bootstrap.min.css", type: "style" }, 16 | { url: "https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css", type: "style" }, 17 | // { url: "../../assets/packages/bootstrap/bootstrap.bundle.min.js", type: "script" }, 18 | { url: "https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js", type: "script" }, 19 | ]; 20 | const tailwindHeadInfo = [{ url: "../../assets/packages/tailwind/tailwind.css", type: "style" }]; 21 | const headInfo = [ 22 | // demo color scheme (REQUIRED) 23 | { url: "https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap", type: "style" }, 24 | { url: "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap", type: "style" }, 25 | { url: "../../assets/demo/style.css", type: "style" }, 26 | 27 | { url: "../../assets/packages/jquery-3.6.0.min.js", type: "script" }, 28 | { url: "https://fonts.googleapis.com/css2?family=Roboto&display=swap", type: "style" }, 29 | { url: "../../assets/packages/fontawesome/all.min.css", type: "style" }, 30 | // {url: '../../assets/packages/owl-carousel/owl.carousel.min.js', type: 'script'}, 31 | ]; 32 | 33 | document.addEventListener("DOMContentLoaded", function () { 34 | var body = document.getElementsByTagName("body")[0]; 35 | var topNavbar = document.createElement("div"); 36 | var topNavbarLeft = document.createElement("div"); 37 | var topNavbarRight = document.createElement("div"); 38 | topNavbar.classList = "demo-top-navbar"; 39 | 40 | var colorSchemeContent = document.createElement("div"); 41 | colorSchemeContent.classList = "ezy-color-scheme-group"; 42 | colorSchemes.forEach(function (item) { 43 | var button = document.createElement("button"); 44 | button.title = item.label; 45 | button.style = item.style; 46 | button.onclick = function () { 47 | changeColorScheme(item.value); 48 | }; 49 | colorSchemeContent.append(button); 50 | }); 51 | topNavbarLeft.append(colorSchemeContent); 52 | 53 | // var primaryColorSchemeContent = document.createElement("div"); 54 | // primaryColorSchemeContent.classList = "ezy-primary-color-scheme-group"; 55 | // primaryColorSchemes.forEach(function (item) { 56 | // var button = document.createElement("button"); 57 | // button.title = item.label; 58 | // button.style = item.style; 59 | // button.onclick = function () { 60 | // changePrimaryColorScheme(item.value); 61 | // }; 62 | // primaryColorSchemeContent.append(button); 63 | // }); 64 | // topNavbarLeft.append(primaryColorSchemeContent); 65 | 66 | // var backButton = document.createElement("a"); 67 | // backButton.innerHTML = "Back"; 68 | // backButton.href = "../../"; 69 | // backButton.classList = "back-button"; 70 | 71 | var typeChangeButton = document.createElement("button"); 72 | typeChangeButton.title = "Check Typo"; 73 | typeChangeButton.innerHTML = "Aa"; 74 | typeChangeButton.onclick = function () { 75 | if (document.body.classList.contains("ezy-checktypo")) { 76 | document.body.classList.remove("ezy-checktypo"); 77 | } else { 78 | document.body.classList.add("ezy-checktypo"); 79 | } 80 | }; 81 | 82 | topNavbarRight.append(typeChangeButton); 83 | // topNavbarRight.append(backButton); 84 | 85 | topNavbar.append(topNavbarLeft); 86 | topNavbar.append(topNavbarRight); 87 | body.append(topNavbar); 88 | 89 | changeColorScheme(window.localStorage.getItem("colorScheme") || "light"); 90 | changePrimaryColorScheme(window.localStorage.getItem("primaryColorScheme") || "primary"); 91 | 92 | // $elements = document.querySelectorAll('/(ezy__[a-z]*[0-9]*)([\s\"])/'); 93 | var elements = document.querySelectorAll('[class^="ezy"]'); 94 | var existingElements = []; 95 | 96 | elements.forEach(function (e) { 97 | if (typeof e.className === "string") { 98 | var matchClasses = e.className.match(/(ezy__[a-z]*[0-9]*)(\s|\"|$)/i); 99 | 100 | if (matchClasses && matchClasses[0] && !existingElements.includes(matchClasses[0])) { 101 | var optionCardId = matchClasses[0]; 102 | var componentName = optionCardId.replace("ezy__", ``); 103 | var componentName = componentName.charAt(0).toUpperCase() + componentName.slice(1); 104 | existingElements.push(optionCardId); 105 | 106 | var optionCard = document.createElement("div"); 107 | optionCard.classList = "ezy-option-card"; 108 | optionCard.innerHTML = `ID: ${optionCardId}Component Name: ${componentName}`; 109 | 110 | e.parentNode.insertBefore(optionCard, e); 111 | } 112 | } 113 | }); 114 | }); 115 | 116 | function appendHeadInfo(frame) { 117 | if (frame === "bootstrap") { 118 | bootstrapHeadInfo.forEach(function (item) { 119 | _addHeadInfo(item); 120 | }); 121 | } else if (frame === "tailwind") { 122 | tailwindHeadInfo.forEach(function (item) { 123 | _addHeadInfo(item); 124 | }); 125 | } 126 | 127 | headInfo.forEach(function (item) { 128 | _addHeadInfo(item); 129 | }); 130 | } 131 | 132 | function _addHeadInfo(item) { 133 | var head = document.getElementsByTagName("head")[0]; 134 | 135 | var element; 136 | if (item.type === "script") { 137 | element = document.createElement("script"); 138 | element.src = item.url; 139 | } else if (item.type === "style") { 140 | element = document.createElement("link"); 141 | element.href = item.url; 142 | element.rel = "stylesheet"; 143 | } 144 | 145 | element && head.append(element); 146 | } 147 | 148 | function changeColorScheme(color) { 149 | document.body.classList.remove("light", "gray", "dark", "dark-gray"); 150 | 151 | switch (color) { 152 | case "light": 153 | document.body.classList.add("light"); 154 | window.localStorage.setItem("colorScheme", "light"); 155 | break; 156 | case "gray": 157 | document.body.classList.add("gray"); 158 | window.localStorage.setItem("colorScheme", "gray"); 159 | break; 160 | case "dark": 161 | document.body.classList.add("dark"); 162 | window.localStorage.setItem("colorScheme", "dark"); 163 | break; 164 | case "dark-gray": 165 | document.body.classList.add("dark-gray"); 166 | window.localStorage.setItem("colorScheme", "dark-gray"); 167 | break; 168 | default: 169 | break; 170 | } 171 | } 172 | 173 | function changePrimaryColorScheme(color) { 174 | document.body.classList.remove("ezy-primary", "ezy-orange", "ezy-red"); 175 | 176 | switch (color) { 177 | case "primary": 178 | document.body.classList.add("ezy-primary"); 179 | window.localStorage.setItem("primaryColorScheme", "primary"); 180 | break; 181 | case "orange": 182 | document.body.classList.add("ezy-orange"); 183 | window.localStorage.setItem("primaryColorScheme", "orange"); 184 | break; 185 | case "red": 186 | document.body.classList.add("ezy-red"); 187 | window.localStorage.setItem("primaryColorScheme", "red"); 188 | break; 189 | default: 190 | break; 191 | } 192 | } 193 | 194 | var checkReady = function (callback) { 195 | if (window.jQuery) { 196 | callback(jQuery); 197 | } else { 198 | window.setTimeout(function () { 199 | checkReady(callback); 200 | }, 1000); 201 | } 202 | }; 203 | -------------------------------------------------------------------------------- /assets/demo/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #fff3d8 !important; 3 | padding-top: 62px; 4 | } 5 | .demo-top-navbar { 6 | background-color: #fff; 7 | position: fixed; 8 | top: 0; 9 | left: 0; 10 | right: 0; 11 | padding: 6px 32px; 12 | z-index: 1111; 13 | display: flex; 14 | align-items: center; 15 | justify-content: center; 16 | box-shadow: 0 8px 27px rgba(0, 0, 0, 0.13); 17 | } 18 | 19 | .demo-top-navbar div { 20 | display: flex; 21 | } 22 | 23 | .demo-top-navbar button, 24 | .demo-top-navbar a { 25 | border: 1px solid #ccc; 26 | padding: 0; 27 | border-radius: 50px; 28 | margin-right: 6px; 29 | 30 | display: inline-flex; 31 | text-decoration: none; 32 | height: 30px; 33 | width: 30px; 34 | align-items: center; 35 | justify-content: center; 36 | } 37 | 38 | .demo-top-navbar .back-button { 39 | background-color: #c7254e; 40 | color: #fff; 41 | } 42 | 43 | body.ezy-checktypo, 44 | body.ezy-checktypo p { 45 | font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, 46 | Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important; 47 | } 48 | .ezy-checktypo h1, 49 | .ezy-checktypo h2, 50 | .ezy-checktypo h3, 51 | .ezy-checktypo h4, 52 | .ezy-checktypo h5, 53 | .ezy-checktypo h6 { 54 | font-family: DM Serif Display, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, 55 | Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji !important; 56 | } 57 | 58 | /* Option Card */ 59 | .ezy-option-card { 60 | background-color: rgb(78 54 245); 61 | color: white; 62 | margin: 10px; 63 | padding: 10px 16px; 64 | display: inline-flex; 65 | align-items: center; 66 | gap: 20px; 67 | font-size: 13px; 68 | font-weight: 500; 69 | border-radius: 22px; 70 | } 71 | .ezy-option-card > span { 72 | display: flex; 73 | align-items: center; 74 | } 75 | .ezy-option-card > span > b { 76 | border: 1px solid #998aff; 77 | padding: 1px 10px; 78 | border-radius: 22px; 79 | margin-left: 5px; 80 | font-weight: 600; 81 | } 82 | 83 | .ezy-color-scheme-group { 84 | margin-bottom: 3px; 85 | } 86 | .ezy-color-scheme-group, 87 | .ezy-primary-color-scheme-group { 88 | height: 30px; 89 | } 90 | 91 | .ezy-color-scheme-group, 92 | .ezy-primary-color-scheme-group { 93 | border-right: 1px solid #ddd; 94 | padding: 0 16px 0 0; 95 | margin: 0 16px 0 0; 96 | } 97 | 98 | .ezy-orange * { 99 | --ezy-theme-color: rgb(245, 158, 11); 100 | --ezy-theme-color-rgb: 245, 158, 11; 101 | } 102 | .ezy-red * { 103 | --ezy-theme-color: rgb(2178, 39, 39); 104 | --ezy-theme-color-rgb: 2178, 39, 39; 105 | } 106 | 107 | /*//*/ 108 | [class*="ezy__epqoverview"].modal, 109 | [class*="ezy__signin"].modal, 110 | [class*="ezy__signup"].modal, 111 | [class*="ezy__travel"].modal { 112 | display: block; 113 | position: relative; 114 | opacity: 1; 115 | padding: 30px 0; 116 | } 117 | -------------------------------------------------------------------------------- /assets/packages/tailwind/row-files/tailwind.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | /* @layer components { 6 | .btn-primary { 7 | @apply bg-blue-600 hover:bg-opacity-90 text-white font-bold border border-blue-600 py-3 px-7 rounded transition; 8 | } 9 | .btn-outline { 10 | @apply bg-transparent hover:bg-blue-600 border border-blue-600 hover:text-white py-2 px-5 rounded transition; 11 | } 12 | .section-padding { 13 | @apply py-[60px] md:py-[100px]; 14 | } 15 | .form-control { 16 | @apply min-h-[42px] leading-[26px] bg-white text-black focus:outline-none; 17 | } 18 | } */ 19 | -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyFrontendHQ/html-tailwindcss-components/4b148efde6b802f681411a43b83a22fda4c7d611/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tailwindcss", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "tailwindcss -i ./assets/packages/tailwind/row-files/tailwind.css -o ./assets/packages/tailwind/tailwind.css -w" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "devDependencies": { 13 | "tailwindcss": "^3.2.4" 14 | } 15 | } -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./tailwind/**/*.html"], 4 | darkMode: "class", 5 | theme: { 6 | // screens: { 7 | // sm: "576px", 8 | 9 | // md: "768px", 10 | 11 | // lg: "992px", 12 | 13 | // xl: "1200px", 14 | 15 | // "2xl": "1400px", 16 | // }, 17 | container: { 18 | center: true, 19 | // padding: { 20 | // DEFAULT: "1rem", 21 | // }, 22 | // screens: { 23 | // sm: "540px", 24 | 25 | // md: "720px", 26 | 27 | // lg: "960px", 28 | 29 | // xl: "1140px", 30 | 31 | // "2xl": "1320px", 32 | // }, 33 | }, 34 | extend: { 35 | // boxShadow: { 36 | // cardShadow: "0 11px 49px rgba(213, 213, 213, 0.5)", 37 | // }, 38 | // colors: { 39 | // border: " #d1d1d1", 40 | // btnBorder: "#00000033", 41 | // themeColor: "#0d6efd", 42 | // white: "#fff", 43 | // black: "#000", 44 | // }, 45 | }, 46 | }, 47 | plugins: [], 48 | }; 49 | -------------------------------------------------------------------------------- /tailwind/about-us/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | About Us(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 |

22 | Developing Amazing Things with Passion since 2016. 23 |

24 |
25 |
26 |

27 | Created forth two. Behold appear first, kind all i saying fowl man itself moved which every open shall 28 | moved subdue appear. Saying life wherein stars. Give dry, own, male had that us third lesser over deep. 29 | May every bring in it Whose. Female earth heaven won't behold female. 30 |

31 |

32 | Moved bearing give a two after. Had. Seas. Man they're. Grass above kind saying thing for that void sixth 33 | fly His after it. 34 |

35 |

36 | The set doesn't moved. Deep don't fruit fowl gathering heaven days moving creeping under from i air. Set 37 | it fifth Meat wasness. every bring in it Whose. Female earth heaven won't behold female. 38 |

39 |
40 |
41 |
42 |
43 | 44 |
45 | 46 | 47 |
48 |
49 |
50 |
51 |

54 | Traveller Visiting nowadays Iceage Caves With Amazing Eye-catching Scenes. 55 |

56 |
57 |
58 |
62 |
63 |
64 |

65 | Created forth two. Behold appear first, kind all i saying fowl man itself moved which every open shall 66 | moved subdue appear. Saying life wherein stars. Give dry, own, male had that us third lesser over deep. 67 | May every bring in it Whose. Female earth heaven won't behold female. 68 |

69 |

70 | Moved bearing give a two after. Had. Seas. Man they're. Grass above kind saying thing for that void sixth 71 | fly His after it. 72 |

73 |

74 | The set doesn't moved. Deep don't fruit fowl gathering heaven days moving creeping under from i air. Set 75 | it fifth Meat wasness. every bring in it Whose. Female earth heaven won't behold female. 76 |

77 |
78 |
79 |
80 |
81 | 82 |
83 | 84 | 85 |
86 |
87 |
88 |

What is CourseCloud Live?

89 |
90 |
91 |
92 | 93 |
Flexible Learning
94 |

Take classes at your own pace with on-demand videos and class workbooks.

95 |
96 | 97 |
98 | 99 |
Engaging Community
100 |

101 | Participate in student opportunities and connect with other students on the CourseCloud. 102 |

103 |
104 | 105 |
106 | 107 |
Explore
108 |

MasterClass offers full refunds up to 30 days after gift redemption.

109 |
110 |
111 |
112 |
113 | 114 |
115 | 116 | 117 |
118 |
119 |
120 |
121 |

122 | About the Conference and Developing Amazing Things with Passion since 2016. 123 |

124 |
125 |
126 |
130 |
131 |
132 |

133 | Created forth two. Behold appear first, kind all i saying fowl man itself moved which every open shall 134 | moved subdue appear. Saying life wherein stars. Give dry, own, male had that us third lesser over deep. 135 | May every bring in it Whose. Female earth heaven won't behold female. 136 |

137 |

138 | Moved bearing give a two after. Had. Seas. Man they're. Grass above kind saying thing for that void sixth 139 | fly His after it. 140 |

141 |

142 | The set doesn't moved. Deep don't fruit fowl gathering heaven days moving creeping under from i air. Set 143 | it fifth Meat wasness. every bring in it Whose. Female earth heaven won't behold female. 144 |

145 |
146 |
147 |
148 |
149 | 150 |
151 | 152 | 154 |
155 |
156 |
157 |
158 |

About Us

159 |

160 | We are a sister-owned company that creates skin care with minimal ingredients in powerful combinations. 161 |

162 |
163 |

164 | We obsess over every single ingredient that we add to our products, avoiding anything that is known to 165 | be irritating or cause for concern, and hone in on unique blends of botanicals and clays that are 166 | especially effective and truly feel incredible to use. 167 |

168 |

OUR STORY

169 |

170 | We're sisters, Zeena and Letisha. We started Brown and Coconut as a lifestyle blog in 2013 while living 171 | in Boston, MA. We shared our journey to living a more conscious and holistic life with a special focus 172 | on our efforts to heal our acneic skin, which didn’t get better with conventional treatment methods. We 173 | knew the type of skin care products we were looking for but couldn’t find them in stores, trying 174 | countless products that were too expensive and didn’t meet our expectations, leaving us disappointed and 175 | out of money. Frustrated, but motivated, we embarked on the journey to develop our own line of skin care 176 | products. 177 |

178 |

OUR PRODUCTS

179 |

180 | After identifying the ingredients we found effective in healing our skin, we began crafting entirely 181 | unique formulas. Countless hours of research, cosmetic chemist expertise, trial, and error led to the 182 | creation of our line of plant-based powerhouse products that not only do what they say they do, but that 183 | feel incredible to use. We’ve come a long way since we made our debut at our first-ever local pop-up 184 | event in Massachusetts, but what has not changed is our love for making luxurious botanical skin care 185 | that you simply can’t wait to come home to. 186 |

187 |

OUR IMPACTY

188 |

189 | Our products are packaged in glass bottles that can be reused and recycled. Orders are shipped in 190 | recyclable cardboard boxes with recyclable packing paper. Each item is hand-rolled in recycled paper 191 | wraps to protect the glass during shipment. We use paper tape with a starch-based adhesive to seal the 192 | boxes. To save paper and reduce the need to print, we do not include invoices with orders. To offset our 193 | shipping emissions, we pay a fee for every order which is then donated to forest protection initiatives, 194 | specifically 195 | the Acapa - Bajo Mira y Frontera Forest Conservation Project 196 | in Colombia. 197 |

198 |
199 | 204 |
205 |
206 |
207 |
208 |
209 |
210 | 211 |
212 | 213 | 214 | 215 | -------------------------------------------------------------------------------- /tailwind/buy-ticket-form/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Buy Ticket Form 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 |
18 |
21 | 22 |
23 |
24 |
25 |
26 |
27 | 28 |
29 |

Buy Ticket

30 |
31 | 32 | 33 |
34 |
35 |
36 | Full conference Pass 37 | 2 Days Full Access + Launch + Gifts 38 |
39 |
40 | Order full pass 43 |
44 |
45 | 46 |
47 | 48 | 49 |
50 |
51 |
52 | Full conference Pass 53 | 2 Days Full Access + Launch + Gifts 54 |
55 |
56 | Order full pass 59 |
60 |
61 | 62 |
63 | 64 |
65 |
66 | 67 |
68 |
69 |
CONFERENCE SPONSORS
70 |
71 |
72 |
73 | 74 |
75 | 101 |
102 |
103 | 104 |
105 |
106 | 107 |
108 | 109 |
110 | 111 | 112 | -------------------------------------------------------------------------------- /tailwind/call-to-actions/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Call To Action(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 | 26 |
29 | 35 | 40 | 41 | 47 | 52 | 53 | 54 |
55 |
56 |
57 |
58 |

Did you know?

59 |

60 | It’s easier to reach your savings goals when you have the right savings account. 61 |

62 | 68 |
69 |
70 |
71 |
72 |
73 | 74 |
75 | 76 | 79 |
80 | 81 |
82 |
83 | 84 |
85 |
86 |
87 |
88 |

Did you know?

89 |

90 | It’s easier to reach your savings goals when you have the right savings account. 91 |

92 | 93 |
94 |
95 |
96 |
97 |
98 | 99 |
100 | 101 | 104 |
105 |
106 |
107 |
108 |

Did you know?

109 |

110 | It’s easier to reach your savings goals when you have the right savings account. 111 |

112 |
113 |
114 |
115 |
116 | 117 |
118 | 123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 | 131 |
132 | 133 | 136 |
137 |
138 |
139 |
140 |

Join with us for more information

141 | 142 |
143 |
144 |

145 | It’s easier to reach your savings goals when you have the right savings account. 146 |

147 |
148 |
149 | 150 |
151 | 156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 | 166 |
167 | 168 | 171 |
172 |
173 |
174 |
175 |

Join with us for more information

176 | 177 |
178 |
179 |

180 | It’s easier to reach your savings goals when you have the right savings account. 181 |

182 |
183 |
184 | 185 | 186 |
187 | 188 |
189 |
190 |
191 |
192 |
193 | 194 |
195 | 196 | 197 | 198 | -------------------------------------------------------------------------------- /tailwind/client-logos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Client Logos(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 | 27 | 32 | 37 | 42 | 47 | 52 | 57 | 62 |
63 |
64 |
65 | 66 |
67 | 68 | 71 |
72 |
73 |
74 |
75 |

Meet Our Clients & Partners

76 |

77 | Create amazing carousel to display your client or partner logos with extensive design controls. 78 |

79 |
80 |
81 |
82 | 87 | 92 | 97 | 102 | 107 | 112 | 117 | 122 |
123 |
124 |
125 | 126 |
127 | 128 | 131 |
132 |
133 |
134 |
135 |

Meet Our Clients & Partners

136 |
137 |
138 |
139 | 144 | 149 | 154 | 159 | 164 | 169 | 174 | 179 |
180 |
181 |
182 | 183 |
184 | 185 | 188 |
189 |
190 |
191 |

Meet Our Clients & Partners

192 |
193 | 194 |
195 | 200 | 205 | 210 | 215 | 220 | 225 | 230 | 235 |
236 |
237 |
238 |
239 | 240 |
241 | 242 | 245 |
246 |
247 |
248 |

Meet Our Clients & Partners

249 |
250 | 251 |
252 | 257 | 262 | 267 | 272 | 277 | 282 | 287 | 292 |
293 |
294 | 295 |
296 | 301 | 306 | 311 | 316 | 321 | 326 | 331 | 336 |
337 |
338 |
339 |
340 | 341 |
342 | 343 | 344 | 345 | -------------------------------------------------------------------------------- /tailwind/coming-soon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Coming Soon(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |

Coming Soon

24 |

25 | An activity that requires a person's mental or physical effort is work.If a person is trained for a 26 | certain type of job, they may have a profession. Typically, a job would be a subset of someone's career. 27 |

28 |
29 |
30 | 31 |
32 |
33 |
34 |
35 | 36 |
37 | 38 | 41 |
44 |
45 |
46 |
47 |

Coming Soon

48 |

49 | An activity that requires a person's mental or physical effort is work.If a person is trained for a 50 | certain type of job, they may have a profession. Typically, a job would be a subset of someone's career. 51 |

52 |
53 |
54 |
55 | 56 |
60 |
61 |
62 |
65 |
66 |
67 | 74 | 79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 | 87 |
88 | 89 | 92 |
95 | 105 | 115 | 116 |
117 |
118 |
119 |

Good News Coming Soon.

120 |

121 | An activity that requires a person's mental or physical effort is work.If a person is trained for a 122 | certain type of job, they may have a profession. Typically, a job would be a subset of someone's career. 123 |

124 |
125 |
126 | 131 |
132 |
133 |
134 |
135 | 136 |
137 | 138 | 141 |
145 |
146 |
147 |
150 |

Coming Soon

151 |

152 | An activity that requires a person's mental or physical effort is work.If a person is trained for a 153 | certain type of job, they may have a profession. Typically, a job would be a subset of someone's career. 154 |

155 |
156 |
157 |
158 |
159 | 166 | 171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 | 180 |
181 | 182 | 185 |
188 | 200 | 221 | 222 |
223 |
224 |
225 |

New Book Coming Soon!

226 |

227 | An activity that requires a person's mental or physical effort is work.If a person is trained for a 228 | certain type of job, they may have a profession. Typically, a job would be a subset of someone's career. 229 |

230 |
231 |
232 | 233 |
234 |
235 |
236 |
237 | 238 |
239 | 240 | 241 | 242 | -------------------------------------------------------------------------------- /tailwind/contact-us/contactUs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Coming Soon(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |
24 | 29 |
30 |
31 |
32 |
35 | 36 |
37 |
38 |

Contact Us

39 |

We list your menu online, help you process orders.

40 |
41 |
42 |
43 | 48 |
49 |
50 | 55 |
56 |
57 | 63 |
64 |
65 | 66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | 74 |
75 | 76 | 79 |
80 |
84 |
85 |
86 |
87 |
88 |

How can we help you?

89 |

90 | It’s easier to reach your savings goals when you have the right savings account. Take a look and find 91 | the right one for you! 92 |

93 |
94 |
95 |
96 |
97 |

Contact Us

98 |

We list your menu online, help you process orders.

99 | 100 |
101 |
102 | 107 |
108 |
109 | 114 |
115 |
116 | 122 |
123 |
124 | 130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 | 140 |
141 | 142 | 145 |
148 |
149 |
150 |
151 |
155 |
156 |
157 |
158 |

Contact Us

159 |

We list your menu online, help you process orders.

160 | 161 |
162 |
163 | 168 |
169 |
170 | 175 |
176 |
177 | 183 |
184 |
185 | 188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 | 196 |
197 | 198 | 201 |
204 |
205 |
206 |
207 |
211 |
212 |
213 |
214 |

Contact Us

215 |

We list your menu online, help you process orders.

216 | 217 |
218 |
219 | 224 |
225 |
226 | 231 |
232 |
233 | 239 |
240 |
241 | 244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 | 252 |
253 | 254 | 257 |
261 |
262 |
263 |
264 |
265 |
266 |

Contact Us

267 |

We list your menu online, help you process orders.

268 | 269 |
270 |
271 | 276 |
277 |
278 | 283 |
284 |
285 | 291 |
292 |
293 | 296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 | 304 |
305 | 306 | 307 | 308 | -------------------------------------------------------------------------------- /tailwind/cookies/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Cookies(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 |
20 |
21 |
22 |
23 |
24 |
25 |

26 | We use third-party cookies in order to personalize your experience. 27 |

28 | Read our cookie policy 31 |
32 |
33 | 36 | 37 |
38 |
39 |
40 |
41 |
42 |
43 | 44 |
45 | 46 | 49 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |

60 | We use third-party cookies in order to personalize your experience. 61 |

62 | Read our cookie policy 65 |
66 |
67 | 72 | 73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 | 82 |
83 | 84 | 87 |
90 |
91 |
92 |
93 |
94 |
95 |

96 | We use third-party cookies in order to personalize your experience. 97 |

98 | Read our cookie policy 101 |
102 |
103 | 106 | 107 |
108 |
109 |
110 |
111 |
112 | 113 |
114 | 115 | 118 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |

Cookie Policy

130 |

131 | We use third-party cookies in order to personalize your experience. 132 |

133 | Read our cookie policy 136 |
137 |
138 |
139 | 144 | 147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 | 156 |
157 | 158 | 161 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |

Cookie Policy

173 |

174 | We use cookies to personalise content, to provide social media features and to analyse our 175 | traffic. We also share information about your use of our site with our social media, advertising 176 | and analytics partners. 177 |

178 | Read our cookie policy 181 |
182 |
183 |
184 | 189 | 192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 | 201 |
202 | 203 | 204 | 205 | -------------------------------------------------------------------------------- /tailwind/copyrights/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Copyrights(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |
24 |

Copyright all rights reserved

25 |
26 |
27 | 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 | 67 |
68 |
69 |
70 |

Copyright all rights reserved

71 |
72 |
73 |
74 | 75 |
76 | 77 | 80 |
83 |
84 |
85 |
86 |

Copyright all rights reserved

87 |
88 |
89 |
    90 |
  • 91 | 92 |
  • 93 |
  • 94 | 95 |
  • 96 |
  • 97 | 98 |
  • 99 |
  • 100 | 101 |
  • 102 |
103 |
104 |
105 |
106 |
107 | 108 |
109 | 110 | 113 |
114 |
115 |
116 |

Copyright all rights reserved

117 |
118 |
119 |
120 | 121 |
122 | 123 | 126 |
129 |
130 |
131 |
132 |
    133 |
  • 134 | 135 |
  • 136 |
  • 137 | 138 |
  • 139 |
  • 140 | 141 |
  • 142 |
  • 143 | 144 |
  • 145 |
146 |
147 |
148 |

Copyright all rights reserved

149 |
150 |
151 |
152 |
153 | 154 |
155 | 156 | 157 | 158 | -------------------------------------------------------------------------------- /tailwind/features/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Features(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |
24 |
27 | 28 |
29 |

Product Design

30 |

31 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 32 | blanditiis eligendi qui. 33 |

34 |
35 |
36 |
37 |
38 |
41 | 42 |
43 |

Branding

44 |

45 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 46 | blanditiis eligendi qui. 47 |

48 |
49 |
50 |
51 |
52 |
55 | 56 |
57 |

Photography

58 |

59 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 60 | blanditiis eligendi qui. 61 |

62 |
63 |
64 |
65 |
66 |
69 | 70 |
71 |

Development

72 |

73 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 74 | blanditiis eligendi qui. 75 |

76 |
77 |
78 |
79 |
80 |
83 | 84 |
85 |

Marketing

86 |

87 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 88 | blanditiis eligendi qui. 89 |

90 |
91 |
92 |
93 |
94 |
97 | 98 |
99 |

Design

100 |

101 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 102 | blanditiis eligendi qui. 103 |

104 |
105 |
106 |
107 |
108 |
109 | 110 |
111 | 112 | 115 |
116 |
117 |
118 |
119 |

Our Features

120 |
121 |
122 |

123 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 124 | eligendi qui. 125 |

126 |
127 |
128 |
129 |
130 |
131 |
134 | 135 |
136 |

Product Design

137 |

138 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 139 | blanditiis eligendi qui. 140 |

141 |
142 |
143 |
144 |
145 |
148 | 149 |
150 |

Branding

151 |

152 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 153 | blanditiis eligendi qui. 154 |

155 |
156 |
157 |
158 |
159 |
162 | 163 |
164 |

Photography

165 |

166 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 167 | blanditiis eligendi qui. 168 |

169 |
170 |
171 |
172 |
173 |
174 | 175 |
176 | 177 | 180 |
181 |
182 |
183 |
184 |

Our Features

185 |
186 |
187 |

188 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 189 | eligendi qui. 190 |

191 |
192 |
193 |
194 |
195 |
196 |
199 | 200 |
201 |

Product Design

202 |

203 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 204 | blanditiis eligendi qui. 205 |

206 |
207 |
208 |
209 |
210 |
213 | 214 |
215 |

Branding

216 |

217 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 218 | blanditiis eligendi qui. 219 |

220 |
221 |
222 |
223 |
224 |
227 | 228 |
229 |

Photography

230 |

231 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 232 | blanditiis eligendi qui. 233 |

234 |
235 |
236 |
237 |
238 |
239 | 240 |
241 | 242 | 245 |
248 |
249 |
250 |
251 |

Our Features

252 |

253 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 254 | eligendi qui. 255 |

256 |
257 |
258 |
259 |
260 |
263 |
266 | 267 |
268 |

Product Design

269 |

270 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 271 | blanditiis eligendi qui.Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, 272 | illum at, aliquid blanditiis eligendi qui. 273 |

274 |
275 |
276 |
277 |
278 |
279 |
282 |
285 | 286 |
287 |

Branding

288 |

289 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 290 | blanditiis eligendi qui.Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, 291 | illum at, aliquid blanditiis eligendi qui. 292 |

293 |
294 |
295 |
296 |
297 |
298 |
301 |
304 | 305 |
306 |

Photography

307 |

308 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 309 | blanditiis eligendi qui.Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, 310 | illum at, aliquid blanditiis eligendi qui. 311 |

312 |
313 |
314 |
315 |
316 |
317 | 318 |
319 | 320 | 323 |
326 |
327 |
328 |
329 |

Our Features

330 |

331 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 332 | eligendi qui. 333 |

334 |
335 |
336 |
337 |
338 |
341 |
344 | 345 |
346 |

Product Design

347 |

348 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 349 | blanditiis eligendi qui.Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, 350 | illum at, aliquid blanditiis eligendi qui. 351 |

352 |
353 |
354 |
355 |
358 |
361 | 362 |
363 |

Branding

364 |

365 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 366 | blanditiis eligendi qui.Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, 367 | illum at, aliquid blanditiis eligendi qui. 368 |

369 |
370 |
371 |
372 |
373 |
374 | 375 |
376 | 377 | 378 | 379 | -------------------------------------------------------------------------------- /tailwind/hero-headers-small/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Secondary Header(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 | 31 | 41 |
42 |
43 |
44 |

Home / About Us

45 |

Let's reveal something new!

46 |
47 |
48 |
49 |
50 |
51 | 52 |
53 | 54 | 57 |
58 |
59 |
60 |
61 |

Finally you're here!

62 |

63 | Coquettish darn pernicious foresaw therefore much amongst lingeringly shed much due antagonistically 64 | alongside so then more and about turgid wrote gravida consequat so stunningly this that much slew. 65 |

66 |
67 |
68 |
69 |
70 | 71 |
72 | 73 | 76 |
77 |
78 |
79 |
80 |

Page Heading

81 |

82 | Metus, iaculis aliquam convallis vitae placerat ullamcorper cum id id. Gravida est est, sapien, lacus. 83 | Cursus facilisis tortor feugiat maecenas gravida consequat non blandit. 84 |

85 |
86 |
87 |
88 |
89 | 90 |
91 | 92 | 95 |
99 |
100 |
101 |
102 |
103 |

Secondary Heading

104 |

105 | Cupiditate ullam provident delectus. Eveniet dicta possimus est, alias quo ab cumque labore modi et fuga 106 | quas deleniti ipsa quasi magni eius culpa quibusdam a! 107 |

108 |
109 |
110 |
111 |
112 | 113 |
114 | 115 | 118 |
122 |
126 |
127 |
128 |
129 |

Artificial Inteligence

130 |

131 | Tenetur et neque delectus deleniti suscipit eos. Delectus quis quaerat illum sit esse, qui, quasi 132 | obcaecati magni ea cum Beatae non distinctio. 133 |

134 |
135 |
Join Us On
136 |
    137 |
  • 138 | 139 |
  • 140 |
  • 141 | 142 |
  • 143 |
  • 144 | 145 |
  • 146 |
147 |
148 |
149 |
150 |
151 | 152 |
153 | 160 | 165 | 166 |
167 |
168 | 169 |
170 | 171 | 172 | 173 | -------------------------------------------------------------------------------- /tailwind/hero-headers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Header (HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |
24 |

Building a Better life with Packing.

25 |

It's easier to reach your savings goals when you have the right savings account.

26 |
27 | Try Now 28 |
29 |
30 |
31 | 32 |
33 | 34 |
35 |
36 |
37 |
38 | 39 |
40 | 41 | 44 |
45 |
46 |
47 |
48 |

Nice Workplace For storming Meetings

49 |
50 |
51 |

Egestas sed sed risus pretium quam vulputate dignissim suspendisse in. Pharetra sit amet aliquam id diam maecenas ultricies mi.

52 |
53 |
54 | Try Now 55 |

No registration required

56 |
57 |
58 |
59 |
60 | 61 |
62 | 63 | 66 |
67 |
68 |
69 |
70 |

Modern Flat With Touch Of Creativity

71 |

Being creative within the constraints of client briefs, budgets and timelines is the norm for most agencies. However, investing in research and …

72 | 73 |
74 | 75 | 76 |
77 |

* No registration required

78 |
79 |
80 |
81 |
82 | 83 |
84 | 85 | 88 |
89 |
90 |
91 |
92 |
93 |

How I Escape My Mind By Listening

94 |

Discover thousands of easy to customize themes, templates & CMS products, made by world-class developers...

95 | 96 |
97 | 98 | 99 |
100 |

* No registration required

101 |
102 |
103 |
104 |
105 | 106 |
107 | 108 | 111 |
112 | 113 | 114 | 115 | 116 | 117 | 118 |
119 |
120 |
121 |

Malesuada fames ac turpis egest

122 |

Malesuada fames ac turpis egestas enas pharetra convallis. Cras pulvinar mattis nunc sed blandit.

123 | 124 | Try Now 125 |
126 |
127 | 128 |
129 |
130 |
131 |
132 | 133 |
134 | 135 | 138 | 139 |
140 |
141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 |
153 |
154 |
155 |
156 |

Building a Better life with Packing.

157 |

Sed ut in perspiciatis unde omnis iste natus error sit tatem doloremque laudantium.

158 |
159 | Try Now 160 |
161 |
162 |
163 |
164 | 165 |
166 |
167 |
168 |
169 |
170 | 171 | 172 | -------------------------------------------------------------------------------- /tailwind/navigations/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Navigation(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
22 | 73 |
74 | 75 |
76 | 77 | 80 |
83 | 138 |
139 | 140 |
141 | 142 | 145 |
148 | 217 |
218 | 219 |
220 | 221 | 224 | > 225 |
228 | 280 |
281 | 282 |
283 | 284 | 287 |
290 | 347 |
348 | 349 |
350 | 351 | 352 | 353 | -------------------------------------------------------------------------------- /tailwind/numbers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Numbers(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |

24 | Flying 25 | 26 | < 27 | / 28 | dreams 29 | > 30 | 31 |

32 |
33 | 34 |
35 |
36 |
    37 |
  • 38 | 11 39 | Speakers 40 |
  • 41 |
  • 42 | 4 43 | Hours 44 |
  • 45 |
  • 46 | 3 47 | Topics 48 |
  • 49 |
  • 50 | Get Tickets 53 |
  • 54 |
55 |
56 |
57 |
58 |
59 |
60 | 61 |
62 | 63 | 66 |
67 |
68 | 69 |
70 |
71 |
72 |

Let's reveal Something !

73 |

74 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime quod perferendis nihil cupiditate 75 | aliquid qui exercitationem labore veritatis eaque nobis libero earum. 76 |

77 |
78 | 79 |
80 | 81 |
82 |

432

83 |
Completed Event
84 |

Partner removes the hassle and confusion that comes from managing.

85 |
86 | 87 | 88 |
89 |

758

90 |
Game Completed
91 |

It’s no secret that the digital. From exciting startups to global brands.

92 |
93 | 94 |
95 | 96 |
97 | 98 |
99 |

31+

100 |
Completed Fund
101 |

Sed ut in perspiciatis unde omnis istema natus error sit tatem.

102 |
103 | 104 | 105 | 106 |
107 |

994

108 |
Completed Ticket
109 |

Viverra tellus in hac habitasse platea dictumst tempor id eu nisl.

110 |
111 | 112 |
113 |
114 |
115 |
116 | 121 |
122 |
123 |
124 |
125 |
126 | 127 |
128 | 129 | 132 |
133 |
134 | 135 |
136 |
137 |
138 |

Some Important Numbers

139 |

140 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime quod perferendis nihil cupiditate 141 | aliquid qui exercitationem labore veritatis eaque nobis libero earum. 142 |

143 |
144 | 145 |
146 | 147 |
148 |

432

149 |
Completed Event
150 |

Partner removes the hassle and confusion that comes from managing.

151 |
152 | 153 | 154 |
155 |

758

156 |
Game Completed
157 |

It’s no secret that the digital. From exciting startups to global brands.

158 |
159 | 160 |
161 | 162 |
163 | 164 |
165 |

31+

166 |
Completed Fund
167 |

Sed ut in perspiciatis unde omnis istema natus error sit tatem.

168 |
169 | 170 | 171 | 172 |
173 |

994

174 |
Completed Ticket
175 |

Viverra tellus in hac habitasse platea dictumst tempor id eu nisl.

176 |
177 | 178 |
179 |
180 |
181 |
182 | 187 |
188 |
189 |
190 |
191 |
192 | 193 |
194 | 195 | 198 |
199 |
200 |
201 |
202 |

139

203 |
Completed Event
204 |
205 |
206 |

12k

207 |
Game Completed
208 |
209 |
210 |

97+

211 |
Completed Fund
212 |
213 |
214 |

333

215 |
Completed Ticket
216 |
217 |
218 |
219 |
220 | 221 |
222 | 223 | 226 |
227 |
228 |
229 |
230 |

754

231 |
Completed Event
232 |
233 |
234 |

19k

235 |
Game Completed
236 |
237 |
238 |

53

239 |
Completed Fund
240 |
241 |
242 |

111

243 |
Completed Ticket
244 |
245 |
246 |
247 |
248 | 249 |
250 | 251 | 252 | 253 | -------------------------------------------------------------------------------- /tailwind/rich-contents/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Rich Contents(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |

24 | Become a master of model in a week with Coursera 25 |

26 |

27 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime quod perferendis nihil cupiditate aliquid 28 | qui. 29 |

30 |
31 |
32 | 35 | 36 |
37 |
38 |
39 |

40 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 41 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 42 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 43 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 44 |

45 |

46 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 47 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 48 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 49 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 50 |

51 |

52 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 53 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 54 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 55 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 56 |

57 | 58 |

59 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 60 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 61 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 62 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 63 |

64 |

65 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 66 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 67 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 68 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 69 |

70 |

71 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 72 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 73 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 74 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 75 |

76 |
77 |
78 |
79 |
80 |
81 | 82 |
83 | 84 | 87 |
88 |
89 |
90 |
91 |

92 | Izomart is providing free course on Web Development 93 |

94 |

95 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime quod perferendis nihil cupiditate aliquid 96 | qui. 97 |

98 | 99 |

100 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 101 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 102 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 103 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 104 |

105 |

106 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 107 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 108 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 109 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 110 |

111 |

112 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 113 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 114 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 115 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 116 |

117 | 118 |

119 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 120 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 121 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 122 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 123 |

124 |

125 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 126 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 127 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 128 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 129 |

130 |

131 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 132 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 133 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 134 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 135 |

136 |
137 |
138 |
139 |
140 | 141 |
142 | 143 | 146 |
147 |
148 |
149 |
150 |

151 | Become a master of model in a week with Coursera 152 |

153 |

154 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime quod perferendis nihil cupiditate aliquid 155 | qui. 156 |

157 |
158 |
159 | 162 | 163 |
164 |
165 |
166 |

167 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 168 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 169 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 170 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 171 |

172 |

173 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 174 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 175 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 176 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 177 |

178 |

179 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 180 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 181 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 182 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 183 |

184 | 185 |

186 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 187 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 188 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 189 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 190 |

191 |

192 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 193 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 194 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 195 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 196 |

197 |

198 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt ducimus non ab obcaecati praesentium 199 | odit, porro ea ratione eos laudantium. Corrupti alias soluta corporis tenetur ea ab debitis, sit 200 | cupiditate dolor libero voluptatibus vel reiciendis quaerat magni tempora sapiente odit aperiam fugiat! 201 | Ipsum laudantium, exercitationem consequuntur eligendi pariatur eius porro. 202 |

203 |
204 |
205 |
206 |
207 |
208 | 209 |
210 | 211 | 212 | -------------------------------------------------------------------------------- /tailwind/services/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Services(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
20 |
21 |
22 |
23 |

Our Services

24 |

25 | It’s no secret that the digital industry is booming. From exciting Viverra tellus startups to global 26 | brands. 27 |

28 |
29 |
30 |
31 |
32 |
33 |
36 | 37 |
38 |

Product Design

39 |

40 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 41 | blanditiis eligendi qui. 42 |

43 |
44 |
45 |
46 |
47 |
50 | 51 |
52 |

Content Marketing

53 |

54 | More off this less hello salamander lied porpoise much over tightly circa horse taped.Some quick example 55 | text to build. 56 |

57 |
58 |
59 |
60 |
61 |
64 | 65 |
66 |

Digital Strategy

67 |

68 | Vitae bibendum egestas magna sit elit non. Netus volutpat felis Orci commodo mauris digital industry is 69 | booming adipiscing semper amet. 70 |

71 |
72 |
73 |
74 |
75 |
76 | 77 |
78 | 79 | 82 |
83 |
84 |
85 |
86 |

Services We Provide

87 |

88 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 89 | eligendi qui. 90 |

91 |
92 |
93 |
94 |
95 |
96 |
99 | 100 |
101 |

Branding

102 |

103 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 104 | blanditiis eligendi qui. 105 |

106 |
107 |
108 |
109 |
110 |
113 | 114 |
115 |

Content Writing

116 |

117 | It’s easier to reach yours have the right savings account. It’s easier to reach your savings goals when 118 | you have the right savings account 119 |

120 |
121 |
122 |
123 |
124 |
127 | 128 |
129 |

Web Development

130 |

131 | Sed ut in perspiciatis unde omnis iste natus error sit on i tatem accusantium doloremque laudantium, 132 | totam rem aperiam, eaque ipsa quae. 133 |

134 |
135 |
136 |
137 |
138 |
139 | 140 |
141 | 142 | 145 |
146 |
147 |
148 |
149 |

What We Do

150 |

151 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 152 | eligendi qui. 153 |

154 |
155 |
156 |
157 |
158 |
159 |
162 | 163 |
164 |
165 |

SEO Analysis

166 |

167 | It’s easier to reach yours have the right savings account. It’s easier to reach your savings goals 168 | when you have the right savings account. 169 |

170 |
171 |
172 |
173 |
174 |
175 |
178 | 179 |
180 |
181 |

Content Marketing

182 |

183 | Sed ut in perspiciatis unde omnis iste natus error sit on i tatem accusantium doloremque laudantium, 184 | totam rem aperiam, eaque ipsa quae. 185 |

186 |
187 |
188 |
189 |
190 |
191 |
194 | 195 |
196 |
197 |

Photography

198 |

199 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 200 | blanditiis eligendi qui. 201 |

202 |
203 |
204 |
205 |
206 |
207 |
208 | 209 |
210 | 211 | 214 |
215 |
216 |
217 |
218 |

Our Services

219 |

220 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 221 | eligendi qui. 222 |

223 |
224 |
225 |
226 |
227 |
228 |
229 | 230 |
231 |

Product Design

232 |

233 | More off this less hello salamander lied porpoise much over tightly circa horse taped.Some quick example 234 | text to build. 235 |

236 |
237 |
238 |
239 |
240 |
241 | 242 |
243 |

Content Marketing

244 |

245 | It’s easier to reach yours have the right savings account. It’s easier to reach your savings goals when 246 | you have the right savings account. 247 |

248 |
249 |
250 |
251 |
252 |
253 | 254 |
255 |

Digital Strategy

256 |

257 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 258 | blanditiis eligendi qui. 259 |

260 |
261 |
262 |
263 |
264 |
265 | 266 |
267 | 268 | 271 |
272 |
273 |
274 |
275 |

Our Sectors of Work

276 |

277 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid blanditiis 278 | eligendi qui. 279 |

280 |
281 |
282 |
283 |
284 |
285 |
288 | 293 |

Web Design

294 |

295 | It’s easier to reach yours have the right savings account. It’s easier to reach your savings goals 296 | when you have the right savings account 297 |

298 |
299 |
300 |
301 |
302 | 307 |

Product Rise

308 |

309 | Sed ut in perspiciatis unde omnis iste natus error sit on i tatem accusantium doloremque laudantium, 310 | totam rem aperiam, eaque ipsa quae. 311 |

312 |
313 |
314 |
315 |
318 | 323 |

Data Managment

324 |

325 | Assumenda non repellendus distinctio nihil dicta sapiente, quibusdam maiores, illum at, aliquid 326 | blanditiis eligendi qui. 327 |

328 |
329 |
330 |
331 |
332 |
333 |
334 | 335 |
336 | 337 | 338 | 339 | -------------------------------------------------------------------------------- /tailwind/signin-forms/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sign In Forms(HTML-Tailwind) 8 | 9 | 10 | 11 | 14 | 15 | 16 | 19 |
22 |
23 |
24 |
25 |

Log In

26 |
27 |
28 | 29 | 35 |
36 |
37 | 38 | 44 |
45 |
46 | 47 | 48 |
49 | 50 | 53 |
54 |
55 | Or 59 |
60 | 64 | 68 |
69 |

Don't have an account?

70 | Create account 71 |
72 |
73 |
74 |
75 |
76 |
77 | 78 |
79 | 80 | 83 |
84 |
85 |
86 |
87 | 91 |
92 |
93 |
94 |
95 |

Log In

96 | 97 |
98 |
99 | 100 | 106 |
107 |
108 | 109 | 115 |
116 |
117 | 118 | 119 |
120 | 121 | 124 |
125 | 129 | 133 |
134 |

Don't have an account?

135 | Create account 136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 | 145 |
146 | 147 | 150 |
154 |
155 |
156 |
157 |

Log In

158 |
159 |
160 | 161 | 167 |
168 |
169 | 170 | 176 |
177 |
178 | 179 | 180 |
181 | 182 | 185 |
186 |
187 | Or 191 |
192 | 196 | 200 |
201 |

Don't have an account?

202 | Create account 203 |
204 |
205 |
206 |
207 |
208 |
209 | 210 |
211 | 212 | 215 |
216 |
217 |
218 |
219 | 223 |
224 |
225 |
226 |
227 |
228 |

Welcome to Easy Frontend

229 |
230 |

Don't have an account?

231 | Create Account 232 |
233 | 234 |
235 |
236 | 237 | 243 |
244 |
245 | 246 | 252 |
253 |
254 | 255 | 256 |
257 | 260 | 263 |
264 |
265 | Or 269 |
270 | 276 | 282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 | 291 |
292 | 293 | 296 |
297 |
298 |
299 |
300 |
301 |

Welcome to Easy Frontend!

302 |

303 | Don't have an account? 304 | Create Account 305 |

306 |
307 |
308 |
309 |
310 |
311 |
312 | 313 | 319 |
320 |
321 | 322 | 328 |
329 |
330 | 331 | 332 |
333 |
334 |
335 |
336 | 339 |
340 | Forget Your Password? 341 |
342 | 343 |
344 |
345 | Or 349 |
350 | 351 | 355 | 359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 | 367 |
368 | 369 | 370 | 371 | --------------------------------------------------------------------------------