├── Canox - Blog Template Theme ├── audios │ └── audio.mp3 ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── ionicons.min.css │ ├── media.css │ ├── owl.carousel │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ └── owl.transitions.css │ └── style.css ├── error.html ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── img │ ├── ad.png │ ├── ads.png │ ├── instagram │ │ ├── insta1.jpg │ │ ├── insta2.jpg │ │ ├── insta3.jpg │ │ ├── insta4.jpg │ │ ├── insta5.jpg │ │ └── insta6.jpg │ ├── me.jpg │ ├── people │ │ ├── 272272.jpg │ │ ├── 3100483796_1175ab11c6.jpg │ │ ├── 605634.jpg │ │ ├── author.jpg │ │ └── author.png │ ├── post-1.jpg │ ├── post-2.jpg │ ├── post-3.jpeg │ ├── post-3.jpg │ ├── post-5.jpeg │ ├── post-6.png │ ├── shortcut.png │ ├── slider │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── video.MP4 ├── index.html ├── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ ├── main.js │ └── owl.carousel.min.js └── post.html ├── Coronavirus - Landing Page ├── css │ ├── animate.css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── ionicons.min.css │ ├── media.css │ └── style.css ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── images │ ├── doctors.svg │ ├── fever.png │ ├── intro_background.png │ ├── intro_people.png │ ├── intro_virous.png │ ├── preventations.png │ ├── service1.png │ ├── service2.png │ ├── service3.png │ ├── service4.png │ ├── service5.png │ ├── service6.png │ ├── symptoms.png │ └── virous_white.png ├── index.html └── js │ ├── bootstrap.min.js │ ├── countries.js │ ├── jquery.counterup.js │ ├── jquery.min.js │ ├── jquery.nicescroll.min.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── platform.js │ └── wow.min.js ├── Konish - Company Landing Page Template ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── materialize.min.css │ ├── media.css │ └── style.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ ├── about │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── parallax.jpg │ │ └── responsive-design.png │ ├── bg01.png │ ├── footer │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── intro.jpg │ ├── portfolio │ │ ├── 1.jpeg │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpeg │ │ └── 9.jpg │ ├── purchase.jpg │ ├── shortcut-icon.png │ ├── team │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ └── testimonials │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpeg │ │ └── parallax.jpg ├── index.html └── js │ ├── bootstrap.min.js │ ├── jquery-3.1.1.min.js │ ├── main.js │ ├── materialize.min.js │ ├── mixitup.min.js │ └── parallax.min.js ├── Projection & Collision Project - Info Demo ├── css │ ├── bootstrap.min.css │ ├── ionicons.min.css │ ├── owl.carousel │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ └── owl.transitions.css │ └── style.css ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── images │ ├── ball.jpg │ ├── bg0.png │ ├── dotted.png │ ├── info.png │ ├── intro (1).jpeg │ ├── intro (2).jpeg │ └── intro (3).jpeg ├── index.html └── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ ├── jquery.nicescroll.min.js │ ├── main.js │ └── owl.carousel.min.js ├── README.md ├── Sass - Company Landing Page Template ├── css │ ├── bootstrap.min.css │ ├── ionicons.min.css │ ├── media.css │ ├── owl.carousel │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ └── owl.transitions.css │ └── style.css ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── img │ ├── about-us.png │ ├── blog-1.jpeg │ ├── blog-2.jpeg │ ├── e-market.png │ ├── features.png │ ├── mobile-app-1.jpeg │ ├── mobile-app-2.jpg │ ├── mobile-app-3.jpeg │ ├── mobile-app.png │ ├── pricing-background.png │ ├── quote.png │ ├── shortcut.png │ ├── slider-1.jpeg │ ├── slider-2.jpeg │ ├── slider-3.jpeg │ ├── slider-4.jpeg │ ├── team │ │ ├── team-1.jpg │ │ ├── team-2.jpg │ │ ├── team-3.jpg │ │ ├── team-4.jpg │ │ └── team-5.jpg │ ├── web-design.png │ ├── website-1.jpeg │ ├── website-2.jpg │ └── website-3.jpg ├── index.html └── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ ├── main.js │ └── owl.carousel.min.js ├── Sellvas - Blog & Magazine Template Theme ├── blog-boxed.html ├── blog-rtl-boxed.html ├── blog-rtl.html ├── blog.html ├── blog2-boxed.html ├── blog2-rtl-boxed.html ├── blog2-rtl.html ├── blog2.html ├── blog3-boxed.html ├── blog3-rtl-boxed.html ├── blog3-rtl.html ├── blog3.html ├── blog4-boxed.html ├── blog4-rtl-boxed.html ├── blog4-rtl.html ├── blog4.html ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ ├── landing.css │ ├── media.css │ ├── media2.css │ ├── media3.css │ ├── media4.css │ ├── owl.carousel │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ └── owl.transitions.css │ ├── post.css │ ├── style-boxed.css │ ├── style-rtl.css │ ├── style.css │ ├── style2.css │ ├── style3.css │ └── style4.css ├── error-boxed.html ├── error-rtl-boxed.html ├── error-rtl.html ├── error.html ├── error2-boxed.html ├── error2-rtl-boxed.html ├── error2-rtl.html ├── error2.html ├── error3-boxed.html ├── error3-rtl-boxed.html ├── error3-rtl.html ├── error3.html ├── error4-boxed.html ├── error4-rtl-boxed.html ├── error4-rtl.html ├── error4.html ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ └── Home │ │ ├── 3-ad.png │ │ ├── 370x370-ad.png │ │ ├── ad 728x90.webp │ │ ├── ad.jpg │ │ ├── ads-ar.jpg │ │ ├── bg.png │ │ ├── bg01.png │ │ ├── design │ │ ├── 243379.jpg │ │ ├── 251766.jpg │ │ ├── 266037.jpg │ │ ├── 288897.jpg │ │ ├── 374721.jpg │ │ ├── 411888.jpg │ │ ├── 738083.jpg │ │ ├── 742084.jpg │ │ └── pexels-photo-202982.jpeg │ │ ├── dotted.png │ │ ├── fashion │ │ ├── 1.jpg │ │ ├── 10.jpeg │ │ ├── 11.jpeg │ │ ├── 12.jpg │ │ ├── 13.jpeg │ │ ├── 14.jpeg │ │ ├── 15.jpeg │ │ ├── 16.jpeg │ │ ├── 17.jpeg │ │ ├── 18.jpeg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 9.jpeg │ │ ├── flicke_feed │ │ ├── designer-home-office.jpg │ │ ├── girl-checking-tumblr-on-her-macbook-pro.jpg │ │ ├── nicely-dressed-woman-using-her-phone-in-a-car.jpg │ │ ├── snapchat-app-snapcode-ghost-logo-on-iphone-picjumbo-com.jpg │ │ ├── sunglasses-on-a-rock-picjumbo-com.jpg │ │ └── traffic-lights-and-sky-with-clouds-picjumbo-com.jpg │ │ ├── instagram │ │ ├── 1.jpg │ │ ├── 11.jpg │ │ ├── 19.jpg │ │ ├── 1~1.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 2~1.jpg │ │ ├── 3.jpg │ │ ├── 3~1.jpg │ │ ├── 4.jpg │ │ ├── 4~1.jpg │ │ ├── 5.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ │ ├── landing.jpeg │ │ ├── latest_galleries │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ └── tinified.zip │ │ ├── latest_posts │ │ ├── 05_macbook.jpg │ │ ├── 251766.jpg │ │ ├── 272271.jpg │ │ ├── pexels-photo-112452.jpeg │ │ ├── pexels-photo-88737.jpeg │ │ ├── startup-photos.jpg │ │ └── sunglasses-on-a-rock-picjumbo-com.jpg │ │ ├── latest_reviews │ │ ├── 1.jpg │ │ ├── 2.jpeg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── main-post.jpg │ │ ├── latest_tech_post │ │ ├── 10.jpeg │ │ ├── 11.jpeg │ │ ├── 13.jpeg │ │ ├── 14.jpg │ │ ├── 8.jpeg │ │ ├── 9.jpeg │ │ ├── coffee-apple-iphone-laptop.jpg │ │ ├── pexels-photo-28094.jpg │ │ ├── pexels-photo-58639.jpeg │ │ └── pexels-photo.jpg │ │ ├── life_style │ │ ├── 1.jpeg │ │ ├── 10.jpeg │ │ ├── 11.jpeg │ │ ├── 9.jpeg │ │ ├── food1.jpeg │ │ ├── small 1.jpg │ │ ├── small 10.jpg │ │ ├── small 11.jpg │ │ ├── small 12.jpg │ │ ├── small 2.jpg │ │ ├── small 3.jpg │ │ ├── small 4.jpg │ │ ├── small 5.jpg │ │ ├── small 6.jpg │ │ ├── small 7.jpg │ │ ├── small 8.jpg │ │ ├── small 9.jpg │ │ ├── sport1.jpeg │ │ └── travel1.jpeg │ │ ├── logo-4.png │ │ ├── logo-ar-light.png │ │ ├── logo-ar-red-light.png │ │ ├── logo-ar-red.png │ │ ├── logo-ar.png │ │ ├── logo-large.png │ │ ├── logo-light.png │ │ ├── logo-red-light.png │ │ ├── logo-red.png │ │ ├── logo-small-screen.png │ │ ├── logo.png │ │ ├── mobile_news │ │ ├── checking-phone-while-packing-for-a-trip.jpg │ │ ├── dropped-iphone-6-with-cracked-screen-on-car-seat.jpg │ │ ├── man-using-his-iphone-6-on-a-sofa.jpg │ │ ├── snapchat-app-snapcode-ghost-logo-on-iphone-picjumbo-com.jpg │ │ └── young-woman-planning-in-calendar-app-on-white-iphone.jpg │ │ ├── navbar preview │ │ ├── design │ │ │ ├── 01_imac.jpg │ │ │ ├── 02_imac.jpg │ │ │ ├── 251766.jpg │ │ │ ├── 411516.jpg │ │ │ ├── 494376.jpg │ │ │ ├── apple-iphone-books-desk.jpg │ │ │ ├── hands-people-woman-working.jpg │ │ │ └── pexels-photo-56759.jpeg │ │ ├── fashion │ │ │ ├── 1.jpg │ │ │ ├── 10.jpeg │ │ │ ├── 11.jpeg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpeg │ │ │ ├── 14.jpeg │ │ │ ├── 15.jpeg │ │ │ ├── 16.jpeg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpeg │ │ ├── gedgats │ │ │ ├── 1.jpg │ │ │ ├── 10.jpeg │ │ │ ├── 11.jpeg │ │ │ ├── 13.jpeg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpeg │ │ │ ├── 16.jpeg │ │ │ ├── 2.jpeg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpeg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpeg │ │ ├── life_style │ │ │ ├── 1.jpg │ │ │ ├── 10.jpeg │ │ │ ├── 11.jpeg │ │ │ ├── 12.jpeg │ │ │ ├── 13.jpeg │ │ │ ├── 14.jpeg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpeg │ │ │ ├── 19.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpeg │ │ │ ├── food 1.jpg │ │ │ ├── food 2.jpg │ │ │ ├── food 3.jpg │ │ │ ├── food 4.jpg │ │ │ ├── food 5.jpg │ │ │ ├── food 6.jpg │ │ │ ├── sport 1.jpg │ │ │ ├── sport 2.jpg │ │ │ ├── sport 3.jpg │ │ │ ├── sport 4.jpg │ │ │ ├── travel 1.jpg │ │ │ ├── travel 2.jpg │ │ │ ├── travel 3.jpg │ │ │ ├── travel 4.jpg │ │ │ ├── travel 5.jpg │ │ │ ├── travel 6.jpg │ │ │ ├── travel 7.jpg │ │ │ └── travel 8.jpg │ │ ├── photography │ │ │ ├── 346319.jpg │ │ │ ├── 411888.jpg │ │ │ ├── 447148.jpg │ │ │ ├── 510536.jpg │ │ │ ├── 577310.jpg │ │ │ ├── 605634.jpg │ │ │ ├── image_01.jpg │ │ │ └── rudd-2.jpg │ │ └── videos │ │ │ ├── 08_work_table.jpg │ │ │ ├── 1.jpg │ │ │ ├── 12.jpg │ │ │ ├── 14.jpeg │ │ │ ├── 16.jpeg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpeg │ │ │ ├── 2.jpg │ │ │ ├── 219153.jpg │ │ │ ├── 266037.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 460308.jpg │ │ │ ├── 5.jpg │ │ │ ├── 516446.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 741187.jpg │ │ │ ├── 8.jpg │ │ │ └── crossing-801713_1280.jpg │ │ ├── people │ │ ├── 272272.jpg │ │ ├── 3100483796_1175ab11c6.jpg │ │ ├── 605634.jpg │ │ └── author.jpg │ │ ├── recent_posts │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ │ ├── responsive.png │ │ ├── shortcut-icon.png │ │ ├── slider │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ └── weather_icons │ │ ├── cloudy-night.png │ │ ├── cloudy-nightlight.png │ │ ├── cloudy.png │ │ ├── cloudylight.png │ │ ├── moon.png │ │ ├── moonlight.png │ │ ├── partlysunny.png │ │ ├── partlysunnylight.png │ │ ├── rainy.png │ │ ├── rainylight.png │ │ ├── snowy.png │ │ ├── snowylight.png │ │ ├── sunny.png │ │ └── sunnylight.png ├── index-boxed.html ├── index-rtl-boxed.html ├── index-rtl.html ├── index.html ├── index2-boxed.html ├── index2-rtl-boxed.html ├── index2-rtl.html ├── index2.html ├── index3-boxed.html ├── index3-rtl-boxed.html ├── index3-rtl.html ├── index3.html ├── index4-boxed.html ├── index4-rtl-boxed.html ├── index4-rtl.html ├── index4.html ├── js │ ├── bootstrap.min.js │ ├── html5shiv.min.js │ ├── jquery-3.1.1.min.js │ ├── main.js │ ├── owl.carousel.min.js │ ├── respond.min.js │ └── typed.min.js ├── post-boxed.html ├── post-rtl-boxed.html ├── post-rtl.html ├── post.html ├── post2-boxed.html ├── post2-rtl-boxed.html ├── post2-rtl.html ├── post2.html ├── post3-boxed.html ├── post3-rtl-boxed.html ├── post3-rtl.html ├── post3.html ├── post4-boxed.html ├── post4-rtl-boxed.html ├── post4-rtl.html └── post4.html ├── Story Market - Landing Page ├── css │ ├── bootstrap.min.css │ ├── ionicons.min.css │ ├── media.css │ ├── owl.carousel │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ └── owl.transitions.css │ └── style.css ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── images │ ├── item-1.png │ ├── item-2.png │ ├── item-3.png │ ├── item-4.png │ ├── latestBG.png │ ├── slider │ │ ├── slider-1.jpg │ │ ├── slider-2.jpg │ │ └── slider-3.jpg │ ├── social │ │ ├── social-1.svg │ │ ├── social-2.svg │ │ ├── social-3.svg │ │ ├── social-4.svg │ │ ├── social-5.svg │ │ └── social-6.svg │ ├── special-1.png │ ├── special-2.png │ ├── special-3.png │ ├── special-4.png │ ├── special-5.png │ ├── special-6.png │ └── svg │ │ ├── cate-1.svg │ │ ├── cate-2.svg │ │ ├── cate-3.svg │ │ ├── cate-4.svg │ │ ├── cate-5.svg │ │ ├── categories.svg │ │ ├── intro-logo.svg │ │ ├── latest.svg │ │ ├── logo-darck.svg │ │ ├── logo.svg │ │ └── special.svg ├── index.html └── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ ├── main.js │ └── owl.carousel.min.js ├── Tieqode Website ├── algorethems-1.html ├── algorethems-2.html ├── ali-nasser.html ├── avada.html ├── battleships.html ├── canox-site-template.html ├── canox-wordpress.html ├── card-design-1.html ├── castle-on-the-hill.html ├── christmas-tree-design.html ├── covler-site-template.html ├── covler-wordpress.html ├── css │ ├── animate.css │ ├── bootstrap.min.css │ ├── ionicons.min.css │ ├── media.css │ ├── owl.carousel.css │ ├── owl.transitions.css │ └── style.css ├── error-page.html ├── etro-husky-design.html ├── fonts │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── full-screen-design.html ├── galcon.html ├── hemmah-design.html ├── img │ ├── ad.jpg │ ├── ar-bg.png │ ├── background-front.png │ ├── best-projects │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── contact.png │ ├── design-slider │ │ ├── full-screen │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ ├── invest-saudi │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── medcx │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── others │ │ │ ├── 2019.jpg │ │ │ ├── card-1.jpg │ │ │ ├── chistmas-tree.jpg │ │ │ ├── etro-husky.png │ │ │ ├── hemmah-1.png │ │ │ ├── hemmah-2.png │ │ │ ├── hemmah-3.jpg │ │ │ ├── kroboshteh-1.png │ │ │ ├── kroboshteh-2.png │ │ │ ├── kroboshteh-3.png │ │ │ ├── mont-peurri.png │ │ │ ├── mr-robot-1.png │ │ │ └── mr-robot-2.png │ │ └── vasty │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ ├── events │ │ ├── algorethems-1.jpg │ │ ├── algorethems-2.jpg │ │ ├── avada.jpg │ │ ├── battleships.jpg │ │ ├── castle-on-the-hill.jpg │ │ ├── galcon.jpg │ │ ├── linear-algebra.jpg │ │ ├── mediaplayer.jpg │ │ ├── scientifics.jpg │ │ └── whiteny.jpg │ ├── graphics-work │ │ ├── card-1.png │ │ ├── card-2.png │ │ ├── christmas-tree.png │ │ ├── logo-1.png │ │ ├── new-year.png │ │ ├── poster-1.png │ │ ├── poster-2.png │ │ └── rollup.png │ ├── intro-1.jpeg │ ├── intro.jpg │ ├── loader.gif │ ├── logoch-1.png │ ├── logoch-2.png │ ├── logoch.png │ ├── other-works │ │ ├── chat-app.png │ │ ├── ibn-hayyan.png │ │ ├── invest-saudi.png │ │ ├── joul-jammal.png │ │ ├── less7.png │ │ ├── medcx.png │ │ ├── new-laptop.png │ │ ├── rbcs-team.png │ │ └── vasty.png │ ├── parallax-2.jpeg │ ├── parallax.jpg │ ├── placeholder.png │ ├── projects-slider │ │ ├── algorethems-1 │ │ │ ├── algorethems-1-1.png │ │ │ ├── algorethems-1-2.png │ │ │ ├── algorethems-1-3.png │ │ │ ├── algorethems-1-4.png │ │ │ └── algorethems-1-5.png │ │ ├── algorethems-2 │ │ │ ├── algorethems-2-1.png │ │ │ ├── algorethems-2-2.png │ │ │ ├── algorethems-2-3.png │ │ │ └── algorethems-2-4.png │ │ ├── avada │ │ │ ├── avada-1.png │ │ │ ├── avada-10.png │ │ │ ├── avada-11.png │ │ │ ├── avada-12.png │ │ │ ├── avada-13.png │ │ │ ├── avada-14.png │ │ │ ├── avada-15.png │ │ │ ├── avada-2.png │ │ │ ├── avada-3.png │ │ │ ├── avada-4.png │ │ │ ├── avada-5.png │ │ │ ├── avada-6.png │ │ │ ├── avada-7.png │ │ │ ├── avada-8.png │ │ │ └── avada-9.png │ │ ├── battleships │ │ │ ├── battleships-1.png │ │ │ ├── battleships-2.png │ │ │ ├── battleships-3.png │ │ │ ├── battleships-4.png │ │ │ ├── battleships-5.png │ │ │ ├── battleships-6.png │ │ │ ├── battleships-7.png │ │ │ └── battleships-8.png │ │ ├── castle-on-the-hill │ │ │ ├── castle-on-the-hill-1.png │ │ │ ├── castle-on-the-hill-2.png │ │ │ ├── castle-on-the-hill-3.png │ │ │ ├── castle-on-the-hill-4.png │ │ │ ├── castle-on-the-hill-5.png │ │ │ └── castle-on-the-hill-6.png │ │ ├── galcon │ │ │ ├── galcon-1.png │ │ │ ├── galcon-2.png │ │ │ ├── galcon-3.png │ │ │ ├── galcon-4.png │ │ │ ├── galcon-5.png │ │ │ ├── galcon-6.png │ │ │ ├── galcon-7.png │ │ │ ├── galcon-8.png │ │ │ └── galcon-9.png │ │ ├── kami │ │ │ ├── kami-1.png │ │ │ ├── kami-2.png │ │ │ ├── kami-3.png │ │ │ ├── kami-4.png │ │ │ ├── kami-5.png │ │ │ ├── kami-6.png │ │ │ └── kami-7.png │ │ ├── linear-algebra │ │ │ └── linear-algebra.png │ │ ├── scientifics │ │ │ ├── scientifics-1.png │ │ │ ├── scientifics-2.png │ │ │ ├── scientifics-3.png │ │ │ ├── scientifics-4.png │ │ │ ├── scientifics-5.png │ │ │ ├── scientifics-6.png │ │ │ └── scientifics-7.png │ │ └── whiteny │ │ │ ├── whiteny-1.png │ │ │ ├── whiteny-10.png │ │ │ ├── whiteny-11.png │ │ │ ├── whiteny-12.png │ │ │ ├── whiteny-13.png │ │ │ ├── whiteny-14.png │ │ │ ├── whiteny-2.png │ │ │ ├── whiteny-3.png │ │ │ ├── whiteny-4.png │ │ │ ├── whiteny-5.png │ │ │ ├── whiteny-6.png │ │ │ ├── whiteny-7.png │ │ │ ├── whiteny-8.png │ │ │ └── whiteny-9.png │ ├── shortcut-icon.png │ ├── team-members │ │ ├── ali.png │ │ ├── majd.jpg │ │ ├── philip.png │ │ └── sammer.png │ ├── thumbnails │ │ ├── algo-1.png │ │ ├── algo-2.png │ │ ├── avada.png │ │ ├── battleships.png │ │ ├── castle-on-the-hill.png │ │ ├── galcon.png │ │ ├── kami.png │ │ ├── konish-th.png │ │ ├── marvex-th.png │ │ ├── scientifics.png │ │ ├── surface-th.png │ │ ├── timeline-th-b.png │ │ ├── timeline-th.png │ │ └── whiteny.png │ ├── used-apps │ │ ├── adobe-illustrator.svg │ │ ├── adobe-photoshop.svg │ │ └── adobe-xd.svg │ ├── user.png │ └── works │ │ ├── canox-error.png │ │ ├── canox-post.png │ │ ├── canox.png │ │ ├── covler-post.png │ │ ├── covler.png │ │ ├── konish.png │ │ ├── marvex-post.png │ │ ├── marvex.png │ │ ├── sass.png │ │ ├── sellvas-2.png │ │ ├── sellvas-3.png │ │ ├── sellvas-4.png │ │ ├── sellvas.png │ │ ├── surface-post.png │ │ ├── surface.png │ │ ├── timeline-error.png │ │ ├── timeline-post.png │ │ ├── timeline.png │ │ └── wedding.png ├── index.html ├── invest-saudi-xd.html ├── ite-projects-page-2.html ├── ite-projects.html ├── js │ ├── bootstrap.min.js │ ├── jquery-3.1.1.min.js │ ├── main.js │ ├── owl.carousel.min.js │ └── parallax.min.js ├── kami.html ├── konish-site-template.html ├── kroboshteh-design.html ├── linear-algebra.html ├── majd-shmma.html ├── marvex-site-template.html ├── marvex-wordpress.html ├── medcx-xd.html ├── mont-peurri-design.html ├── mr-robot-design.html ├── new-year-2019-design.html ├── philip-haddad.html ├── projects.html ├── sammer-abu-zraa.html ├── sass.html ├── scientifics.html ├── sellvas-site-template.html ├── surface-blogger.html ├── timeline-blogger.html ├── timeline-wordpress.html ├── vasty-xd.html ├── wedding.html ├── whiteny-design.html ├── whiteny.html ├── works-page-2.html ├── works-page-3.html ├── works-page-4.html ├── works-page-5.html └── works.html └── Wedding - Landing Page Template ├── css ├── bootstrap.min.css ├── ionicons.min.css ├── media.css ├── owl carousel │ ├── owl.carousel.css │ ├── owl.theme.css │ └── owl.transitions.css └── style.css ├── fonts ├── ionicons.eot ├── ionicons.svg ├── ionicons.ttf └── ionicons.woff ├── img ├── about-1.jpg ├── about-2.jpg ├── about-3.jpeg ├── background.png ├── contact.jpg ├── date.jpg ├── friend.png ├── intro.jpeg ├── loader.png ├── shortcut-icon.png └── wishes.jpg ├── index.html └── js ├── bootstrap.min.js ├── jquery-3.1.1.min.js ├── main.js ├── owl.carousel.min.js └── parallax.min.js /Canox - Blog Template Theme/audios/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/audios/audio.mp3 -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/bootstrap.min.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/font-awesome.min.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/ionicons.min.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/media.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/owl.carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/owl.carousel/owl.carousel.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/owl.carousel/owl.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/owl.carousel/owl.theme.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/owl.carousel/owl.transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/owl.carousel/owl.transitions.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/css/style.css -------------------------------------------------------------------------------- /Canox - Blog Template Theme/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/error.html -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/ionicons.eot -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/ionicons.svg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Canox - Blog Template Theme/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/fonts/ionicons.woff -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/ad.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/ads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/ads.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/instagram/insta1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/instagram/insta1.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/instagram/insta2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/instagram/insta2.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/instagram/insta3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/instagram/insta3.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/instagram/insta4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/instagram/insta4.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/instagram/insta5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/instagram/insta5.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/instagram/insta6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/instagram/insta6.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/me.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/people/272272.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/people/272272.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/people/3100483796_1175ab11c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/people/3100483796_1175ab11c6.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/people/605634.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/people/605634.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/people/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/people/author.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/people/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/people/author.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/post-1.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/post-2.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/post-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/post-3.jpeg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/post-3.jpg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/post-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/post-5.jpeg -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/post-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/post-6.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/shortcut.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/1.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/10.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/11.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/12.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/13.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/14.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/15.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/16.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/17.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/18.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/19.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/2.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/20.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/3.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/4.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/5.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/6.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/7.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/8.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/slider/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/slider/9.png -------------------------------------------------------------------------------- /Canox - Blog Template Theme/img/video.MP4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/img/video.MP4 -------------------------------------------------------------------------------- /Canox - Blog Template Theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/index.html -------------------------------------------------------------------------------- /Canox - Blog Template Theme/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/js/bootstrap.min.js -------------------------------------------------------------------------------- /Canox - Blog Template Theme/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/js/jquery.min.js -------------------------------------------------------------------------------- /Canox - Blog Template Theme/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/js/main.js -------------------------------------------------------------------------------- /Canox - Blog Template Theme/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Canox - Blog Template Theme/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Canox - Blog Template Theme/post.html -------------------------------------------------------------------------------- /Coronavirus - Landing Page/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/css/animate.css -------------------------------------------------------------------------------- /Coronavirus - Landing Page/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/css/bootstrap.min.css -------------------------------------------------------------------------------- /Coronavirus - Landing Page/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Coronavirus - Landing Page/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/css/ionicons.min.css -------------------------------------------------------------------------------- /Coronavirus - Landing Page/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/css/media.css -------------------------------------------------------------------------------- /Coronavirus - Landing Page/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/css/style.css -------------------------------------------------------------------------------- /Coronavirus - Landing Page/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/fonts/ionicons.eot -------------------------------------------------------------------------------- /Coronavirus - Landing Page/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/fonts/ionicons.svg -------------------------------------------------------------------------------- /Coronavirus - Landing Page/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Coronavirus - Landing Page/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/fonts/ionicons.woff -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/doctors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/doctors.svg -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/fever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/fever.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/intro_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/intro_background.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/intro_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/intro_people.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/intro_virous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/intro_virous.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/preventations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/preventations.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/service1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/service1.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/service2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/service2.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/service3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/service3.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/service4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/service4.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/service5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/service5.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/service6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/service6.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/symptoms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/symptoms.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/images/virous_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/images/virous_white.png -------------------------------------------------------------------------------- /Coronavirus - Landing Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/index.html -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/bootstrap.min.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/countries.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/jquery.counterup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/jquery.counterup.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/jquery.min.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/jquery.nicescroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/jquery.nicescroll.min.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/main.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/platform.js -------------------------------------------------------------------------------- /Coronavirus - Landing Page/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Coronavirus - Landing Page/js/wow.min.js -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/css/bootstrap.min.css -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/css/font-awesome.min.css -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/css/materialize.min.css -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/css/media.css -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/css/style.css -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/about/1.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/about/2.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/about/3.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/about/4.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/about/parallax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/about/parallax.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/bg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/bg01.png -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/footer/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/footer/1.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/footer/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/footer/2.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/footer/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/footer/3.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/intro.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/1.jpeg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/1.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/10.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/11.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/12.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/2.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/3.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/4.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/5.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/6.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/7.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/8.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/9.jpeg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/portfolio/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/portfolio/9.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/purchase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/purchase.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/shortcut-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/shortcut-icon.png -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/team/1.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/team/2.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/team/3.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/testimonials/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/testimonials/1.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/testimonials/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/testimonials/2.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/testimonials/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/testimonials/3.jpg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/img/testimonials/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/img/testimonials/4.jpeg -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/index.html -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/js/bootstrap.min.js -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/js/main.js -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/js/materialize.min.js -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/js/mixitup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/js/mixitup.min.js -------------------------------------------------------------------------------- /Konish - Company Landing Page Template/js/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Konish - Company Landing Page Template/js/parallax.min.js -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/css/bootstrap.min.css -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/css/ionicons.min.css -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/css/style.css -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/fonts/ionicons.eot -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/fonts/ionicons.svg -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/fonts/ionicons.woff -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/ball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/ball.jpg -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/bg0.png -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/dotted.png -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/info.png -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/intro (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/intro (1).jpeg -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/intro (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/intro (2).jpeg -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/images/intro (3).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/images/intro (3).jpeg -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/index.html -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/js/bootstrap.min.js -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/js/jquery.min.js -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/js/main.js -------------------------------------------------------------------------------- /Projection & Collision Project - Info Demo/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Projection & Collision Project - Info Demo/js/owl.carousel.min.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/README.md -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/css/bootstrap.min.css -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/css/ionicons.min.css -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/css/media.css -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/css/owl.carousel/owl.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/css/owl.carousel/owl.theme.css -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/css/style.css -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/fonts/ionicons.eot -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/fonts/ionicons.svg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/fonts/ionicons.woff -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/about-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/about-us.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/blog-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/blog-1.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/blog-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/blog-2.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/e-market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/e-market.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/features.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/mobile-app-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/mobile-app-1.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/mobile-app-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/mobile-app-2.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/mobile-app-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/mobile-app-3.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/mobile-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/mobile-app.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/pricing-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/pricing-background.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/quote.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/shortcut.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/slider-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/slider-1.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/slider-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/slider-2.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/slider-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/slider-3.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/slider-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/slider-4.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/team/team-1.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/team/team-2.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/team/team-3.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/team/team-4.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/team/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/team/team-5.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/web-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/web-design.png -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/website-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/website-1.jpeg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/website-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/website-2.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/img/website-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/img/website-3.jpg -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/index.html -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/js/bootstrap.min.js -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/js/jquery.min.js -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/js/main.js -------------------------------------------------------------------------------- /Sass - Company Landing Page Template/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sass - Company Landing Page Template/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog2-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog2-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog2-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog2-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog2-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog2-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog2.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog3-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog3-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog3-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog3-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog3-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog3-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog3.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog4-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog4-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog4-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog4-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog4-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog4-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/blog4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/blog4.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/bootstrap.min.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/font-awesome.min.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/landing.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/media.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/media2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/media2.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/media3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/media3.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/media4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/media4.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/post.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/style-boxed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/style-boxed.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/style-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/style-rtl.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/style.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/style2.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/style3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/style3.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/css/style4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/css/style4.css -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error2-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error2-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error2-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error2-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error2-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error2-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error2.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error3-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error3-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error3-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error3-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error3-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error3-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error3.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error4-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error4-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error4-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error4-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error4-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error4-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/error4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/error4.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/3-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/3-ad.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/370x370-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/370x370-ad.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/ad 728x90.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/ad 728x90.webp -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/ad.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/ads-ar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/ads-ar.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/bg.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/bg01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/bg01.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/dotted.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/1.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/12.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/2.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/3.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/4.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/5.jpg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/fashion/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/fashion/9.jpeg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/landing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/landing.jpeg -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/logo-4.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/logo-ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/logo-ar.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/logo-large.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/logo-light.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/logo-red.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/logo.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/responsive.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/1.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/10.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/11.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/12.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/13.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/14.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/15.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/16.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/17.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/18.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/19.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/2.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/20.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/3.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/4.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/5.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/6.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/7.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/8.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/images/Home/slider/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/images/Home/slider/9.png -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index2-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index2-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index2-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index2-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index2-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index2-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index2.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index3-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index3-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index3-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index3-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index3-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index3-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index3.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index4-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index4-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index4-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index4-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index4-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index4-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/index4.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/bootstrap.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/html5shiv.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/main.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/respond.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/js/typed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/js/typed.min.js -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post2-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post2-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post2-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post2-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post2-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post2-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post2.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post3-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post3-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post3-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post3-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post3-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post3-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post3.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post4-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post4-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post4-rtl-boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post4-rtl-boxed.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post4-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post4-rtl.html -------------------------------------------------------------------------------- /Sellvas - Blog & Magazine Template Theme/post4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Sellvas - Blog & Magazine Template Theme/post4.html -------------------------------------------------------------------------------- /Story Market - Landing Page/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/bootstrap.min.css -------------------------------------------------------------------------------- /Story Market - Landing Page/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/ionicons.min.css -------------------------------------------------------------------------------- /Story Market - Landing Page/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/media.css -------------------------------------------------------------------------------- /Story Market - Landing Page/css/owl.carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/owl.carousel/owl.carousel.css -------------------------------------------------------------------------------- /Story Market - Landing Page/css/owl.carousel/owl.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/owl.carousel/owl.theme.css -------------------------------------------------------------------------------- /Story Market - Landing Page/css/owl.carousel/owl.transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/owl.carousel/owl.transitions.css -------------------------------------------------------------------------------- /Story Market - Landing Page/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/css/style.css -------------------------------------------------------------------------------- /Story Market - Landing Page/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/fonts/ionicons.eot -------------------------------------------------------------------------------- /Story Market - Landing Page/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/fonts/ionicons.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Story Market - Landing Page/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/fonts/ionicons.woff -------------------------------------------------------------------------------- /Story Market - Landing Page/images/item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/item-1.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/item-2.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/item-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/item-3.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/item-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/item-4.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/latestBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/latestBG.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/slider/slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/slider/slider-1.jpg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/slider/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/slider/slider-2.jpg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/slider/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/slider/slider-3.jpg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/social/social-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/social/social-1.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/social/social-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/social/social-2.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/social/social-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/social/social-3.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/social/social-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/social/social-4.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/social/social-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/social/social-5.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/social/social-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/social/social-6.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/special-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/special-1.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/special-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/special-2.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/special-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/special-3.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/special-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/special-4.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/special-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/special-5.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/special-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/special-6.png -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/cate-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/cate-1.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/cate-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/cate-2.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/cate-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/cate-3.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/cate-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/cate-4.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/cate-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/cate-5.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/categories.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/categories.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/intro-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/intro-logo.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/latest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/latest.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/logo-darck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/logo-darck.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/logo.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/images/svg/special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/images/svg/special.svg -------------------------------------------------------------------------------- /Story Market - Landing Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/index.html -------------------------------------------------------------------------------- /Story Market - Landing Page/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/js/bootstrap.min.js -------------------------------------------------------------------------------- /Story Market - Landing Page/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/js/jquery.min.js -------------------------------------------------------------------------------- /Story Market - Landing Page/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/js/main.js -------------------------------------------------------------------------------- /Story Market - Landing Page/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Story Market - Landing Page/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Tieqode Website/algorethems-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/algorethems-1.html -------------------------------------------------------------------------------- /Tieqode Website/algorethems-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/algorethems-2.html -------------------------------------------------------------------------------- /Tieqode Website/ali-nasser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/ali-nasser.html -------------------------------------------------------------------------------- /Tieqode Website/avada.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/avada.html -------------------------------------------------------------------------------- /Tieqode Website/battleships.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/battleships.html -------------------------------------------------------------------------------- /Tieqode Website/canox-site-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/canox-site-template.html -------------------------------------------------------------------------------- /Tieqode Website/canox-wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/canox-wordpress.html -------------------------------------------------------------------------------- /Tieqode Website/card-design-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/card-design-1.html -------------------------------------------------------------------------------- /Tieqode Website/castle-on-the-hill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/castle-on-the-hill.html -------------------------------------------------------------------------------- /Tieqode Website/christmas-tree-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/christmas-tree-design.html -------------------------------------------------------------------------------- /Tieqode Website/covler-site-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/covler-site-template.html -------------------------------------------------------------------------------- /Tieqode Website/covler-wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/covler-wordpress.html -------------------------------------------------------------------------------- /Tieqode Website/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/animate.css -------------------------------------------------------------------------------- /Tieqode Website/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/bootstrap.min.css -------------------------------------------------------------------------------- /Tieqode Website/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/ionicons.min.css -------------------------------------------------------------------------------- /Tieqode Website/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/media.css -------------------------------------------------------------------------------- /Tieqode Website/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/owl.carousel.css -------------------------------------------------------------------------------- /Tieqode Website/css/owl.transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/owl.transitions.css -------------------------------------------------------------------------------- /Tieqode Website/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/css/style.css -------------------------------------------------------------------------------- /Tieqode Website/error-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/error-page.html -------------------------------------------------------------------------------- /Tieqode Website/etro-husky-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/etro-husky-design.html -------------------------------------------------------------------------------- /Tieqode Website/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/fonts/ionicons.eot -------------------------------------------------------------------------------- /Tieqode Website/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/fonts/ionicons.svg -------------------------------------------------------------------------------- /Tieqode Website/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Tieqode Website/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/fonts/ionicons.woff -------------------------------------------------------------------------------- /Tieqode Website/full-screen-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/full-screen-design.html -------------------------------------------------------------------------------- /Tieqode Website/galcon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/galcon.html -------------------------------------------------------------------------------- /Tieqode Website/hemmah-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/hemmah-design.html -------------------------------------------------------------------------------- /Tieqode Website/img/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/ad.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/ar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/ar-bg.png -------------------------------------------------------------------------------- /Tieqode Website/img/background-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/background-front.png -------------------------------------------------------------------------------- /Tieqode Website/img/best-projects/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/best-projects/1.png -------------------------------------------------------------------------------- /Tieqode Website/img/best-projects/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/best-projects/2.png -------------------------------------------------------------------------------- /Tieqode Website/img/best-projects/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/best-projects/3.png -------------------------------------------------------------------------------- /Tieqode Website/img/best-projects/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/best-projects/4.png -------------------------------------------------------------------------------- /Tieqode Website/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/contact.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/3.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/4.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/5.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/6.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/7.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/full-screen/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/full-screen/8.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/10.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/11.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/12.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/13.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/14.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/15.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/16.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/3.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/4.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/5.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/6.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/7.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/8.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/invest-saudi/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/invest-saudi/9.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/10.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/11.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/12.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/13.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/14.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/15.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/3.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/4.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/5.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/6.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/7.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/8.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/medcx/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/medcx/9.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/2019.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/card-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/card-1.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/chistmas-tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/chistmas-tree.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/etro-husky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/etro-husky.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/hemmah-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/hemmah-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/hemmah-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/hemmah-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/hemmah-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/hemmah-3.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/kroboshteh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/kroboshteh-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/kroboshteh-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/kroboshteh-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/kroboshteh-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/kroboshteh-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/mont-peurri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/mont-peurri.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/mr-robot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/mr-robot-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/others/mr-robot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/others/mr-robot-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/1.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/10.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/2.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/3.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/4.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/5.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/6.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/7.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/8.png -------------------------------------------------------------------------------- /Tieqode Website/img/design-slider/vasty/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/design-slider/vasty/9.png -------------------------------------------------------------------------------- /Tieqode Website/img/events/algorethems-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/algorethems-1.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/algorethems-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/algorethems-2.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/avada.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/avada.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/battleships.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/battleships.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/castle-on-the-hill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/castle-on-the-hill.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/galcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/galcon.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/linear-algebra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/linear-algebra.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/mediaplayer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/mediaplayer.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/scientifics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/scientifics.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/events/whiteny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/events/whiteny.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/card-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/card-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/card-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/card-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/christmas-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/christmas-tree.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/logo-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/new-year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/new-year.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/poster-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/poster-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/poster-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/poster-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/graphics-work/rollup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/graphics-work/rollup.png -------------------------------------------------------------------------------- /Tieqode Website/img/intro-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/intro-1.jpeg -------------------------------------------------------------------------------- /Tieqode Website/img/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/intro.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/loader.gif -------------------------------------------------------------------------------- /Tieqode Website/img/logoch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/logoch-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/logoch-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/logoch-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/logoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/logoch.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/chat-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/chat-app.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/ibn-hayyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/ibn-hayyan.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/invest-saudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/invest-saudi.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/joul-jammal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/joul-jammal.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/less7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/less7.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/medcx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/medcx.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/new-laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/new-laptop.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/rbcs-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/rbcs-team.png -------------------------------------------------------------------------------- /Tieqode Website/img/other-works/vasty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/other-works/vasty.png -------------------------------------------------------------------------------- /Tieqode Website/img/parallax-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/parallax-2.jpeg -------------------------------------------------------------------------------- /Tieqode Website/img/parallax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/parallax.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/placeholder.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-10.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-11.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-12.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-13.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-14.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-15.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-5.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-6.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-7.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-8.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/avada/avada-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/avada/avada-9.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-5.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-6.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-7.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/battleships/battleships-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/battleships/battleships-8.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-5.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-6.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-7.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-8.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/galcon/galcon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/galcon/galcon-9.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-5.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-6.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/kami/kami-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/kami/kami-7.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-5.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-6.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/scientifics/scientifics-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/scientifics/scientifics-7.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-10.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-11.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-12.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-13.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-14.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-5.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-6.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-7.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-8.png -------------------------------------------------------------------------------- /Tieqode Website/img/projects-slider/whiteny/whiteny-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/projects-slider/whiteny/whiteny-9.png -------------------------------------------------------------------------------- /Tieqode Website/img/shortcut-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/shortcut-icon.png -------------------------------------------------------------------------------- /Tieqode Website/img/team-members/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/team-members/ali.png -------------------------------------------------------------------------------- /Tieqode Website/img/team-members/majd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/team-members/majd.jpg -------------------------------------------------------------------------------- /Tieqode Website/img/team-members/philip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/team-members/philip.png -------------------------------------------------------------------------------- /Tieqode Website/img/team-members/sammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/team-members/sammer.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/algo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/algo-1.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/algo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/algo-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/avada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/avada.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/battleships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/battleships.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/castle-on-the-hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/castle-on-the-hill.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/galcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/galcon.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/kami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/kami.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/konish-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/konish-th.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/marvex-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/marvex-th.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/scientifics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/scientifics.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/surface-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/surface-th.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/timeline-th-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/timeline-th-b.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/timeline-th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/timeline-th.png -------------------------------------------------------------------------------- /Tieqode Website/img/thumbnails/whiteny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/thumbnails/whiteny.png -------------------------------------------------------------------------------- /Tieqode Website/img/used-apps/adobe-illustrator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/used-apps/adobe-illustrator.svg -------------------------------------------------------------------------------- /Tieqode Website/img/used-apps/adobe-photoshop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/used-apps/adobe-photoshop.svg -------------------------------------------------------------------------------- /Tieqode Website/img/used-apps/adobe-xd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/used-apps/adobe-xd.svg -------------------------------------------------------------------------------- /Tieqode Website/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/user.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/canox-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/canox-error.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/canox-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/canox-post.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/canox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/canox.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/covler-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/covler-post.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/covler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/covler.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/konish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/konish.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/marvex-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/marvex-post.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/marvex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/marvex.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/sass.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/sellvas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/sellvas-2.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/sellvas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/sellvas-3.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/sellvas-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/sellvas-4.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/sellvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/sellvas.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/surface-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/surface-post.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/surface.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/timeline-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/timeline-error.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/timeline-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/timeline-post.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/timeline.png -------------------------------------------------------------------------------- /Tieqode Website/img/works/wedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/img/works/wedding.png -------------------------------------------------------------------------------- /Tieqode Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/index.html -------------------------------------------------------------------------------- /Tieqode Website/invest-saudi-xd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/invest-saudi-xd.html -------------------------------------------------------------------------------- /Tieqode Website/ite-projects-page-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/ite-projects-page-2.html -------------------------------------------------------------------------------- /Tieqode Website/ite-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/ite-projects.html -------------------------------------------------------------------------------- /Tieqode Website/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/js/bootstrap.min.js -------------------------------------------------------------------------------- /Tieqode Website/js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /Tieqode Website/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/js/main.js -------------------------------------------------------------------------------- /Tieqode Website/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Tieqode Website/js/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/js/parallax.min.js -------------------------------------------------------------------------------- /Tieqode Website/kami.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/kami.html -------------------------------------------------------------------------------- /Tieqode Website/konish-site-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/konish-site-template.html -------------------------------------------------------------------------------- /Tieqode Website/kroboshteh-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/kroboshteh-design.html -------------------------------------------------------------------------------- /Tieqode Website/linear-algebra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/linear-algebra.html -------------------------------------------------------------------------------- /Tieqode Website/majd-shmma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/majd-shmma.html -------------------------------------------------------------------------------- /Tieqode Website/marvex-site-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/marvex-site-template.html -------------------------------------------------------------------------------- /Tieqode Website/marvex-wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/marvex-wordpress.html -------------------------------------------------------------------------------- /Tieqode Website/medcx-xd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/medcx-xd.html -------------------------------------------------------------------------------- /Tieqode Website/mont-peurri-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/mont-peurri-design.html -------------------------------------------------------------------------------- /Tieqode Website/mr-robot-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/mr-robot-design.html -------------------------------------------------------------------------------- /Tieqode Website/new-year-2019-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/new-year-2019-design.html -------------------------------------------------------------------------------- /Tieqode Website/philip-haddad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/philip-haddad.html -------------------------------------------------------------------------------- /Tieqode Website/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/projects.html -------------------------------------------------------------------------------- /Tieqode Website/sammer-abu-zraa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/sammer-abu-zraa.html -------------------------------------------------------------------------------- /Tieqode Website/sass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/sass.html -------------------------------------------------------------------------------- /Tieqode Website/scientifics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/scientifics.html -------------------------------------------------------------------------------- /Tieqode Website/sellvas-site-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/sellvas-site-template.html -------------------------------------------------------------------------------- /Tieqode Website/surface-blogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/surface-blogger.html -------------------------------------------------------------------------------- /Tieqode Website/timeline-blogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/timeline-blogger.html -------------------------------------------------------------------------------- /Tieqode Website/timeline-wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/timeline-wordpress.html -------------------------------------------------------------------------------- /Tieqode Website/vasty-xd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/vasty-xd.html -------------------------------------------------------------------------------- /Tieqode Website/wedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/wedding.html -------------------------------------------------------------------------------- /Tieqode Website/whiteny-design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/whiteny-design.html -------------------------------------------------------------------------------- /Tieqode Website/whiteny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/whiteny.html -------------------------------------------------------------------------------- /Tieqode Website/works-page-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/works-page-2.html -------------------------------------------------------------------------------- /Tieqode Website/works-page-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/works-page-3.html -------------------------------------------------------------------------------- /Tieqode Website/works-page-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/works-page-4.html -------------------------------------------------------------------------------- /Tieqode Website/works-page-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/works-page-5.html -------------------------------------------------------------------------------- /Tieqode Website/works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Tieqode Website/works.html -------------------------------------------------------------------------------- /Wedding - Landing Page Template/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/css/bootstrap.min.css -------------------------------------------------------------------------------- /Wedding - Landing Page Template/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/css/ionicons.min.css -------------------------------------------------------------------------------- /Wedding - Landing Page Template/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/css/media.css -------------------------------------------------------------------------------- /Wedding - Landing Page Template/css/owl carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/css/owl carousel/owl.carousel.css -------------------------------------------------------------------------------- /Wedding - Landing Page Template/css/owl carousel/owl.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/css/owl carousel/owl.theme.css -------------------------------------------------------------------------------- /Wedding - Landing Page Template/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/css/style.css -------------------------------------------------------------------------------- /Wedding - Landing Page Template/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/fonts/ionicons.eot -------------------------------------------------------------------------------- /Wedding - Landing Page Template/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/fonts/ionicons.svg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/fonts/ionicons.ttf -------------------------------------------------------------------------------- /Wedding - Landing Page Template/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/fonts/ionicons.woff -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/about-1.jpg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/about-2.jpg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/about-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/about-3.jpeg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/background.png -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/contact.jpg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/date.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/date.jpg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/friend.png -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/intro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/intro.jpeg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/loader.png -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/shortcut-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/shortcut-icon.png -------------------------------------------------------------------------------- /Wedding - Landing Page Template/img/wishes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/img/wishes.jpg -------------------------------------------------------------------------------- /Wedding - Landing Page Template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/index.html -------------------------------------------------------------------------------- /Wedding - Landing Page Template/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/js/bootstrap.min.js -------------------------------------------------------------------------------- /Wedding - Landing Page Template/js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /Wedding - Landing Page Template/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/js/main.js -------------------------------------------------------------------------------- /Wedding - Landing Page Template/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/js/owl.carousel.min.js -------------------------------------------------------------------------------- /Wedding - Landing Page Template/js/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ali-mohammed-khair-nasser/Static-HTML-Website-Designs/HEAD/Wedding - Landing Page Template/js/parallax.min.js --------------------------------------------------------------------------------