Simple HTML templates. Simple HTML templates Snow - free landing page template using HTML5 and CSS3

When HTML5 began to be supported by modern browsers, it began to be used in almost all modern websites. HTML5 in conjunction with CCS3 provides enormous opportunities for creating amazing, functional and user-friendly websites.

In this collection, I tried to collect the highest quality responsive website templates built on HTML5 and CSS3. Even though they are free, you can see that most of these templates look like premium templates.

5. SquadFree – Free Bootstrap HTML5 Template

Squad Free - responsive bootstrap template

6. Pluton – Free Bootstrap HTML5 One Page Template

Pluton - Free Bootstrap HTML5 One Page Template

9. E-Shopper - free template for an online store

E-Shopper - free template for an online store

10. AdminLTE - admin control panel template

AdminLTE - admin control panel template

11. Magnetic - free template for a photographer’s website

Magnetic - free template for a photographer's website

12. Mabur - responsive portfolio template

Mabur - responsive portfolio template

13. Moderna - responsive website template on Bootstrap

Moderna - responsive website template on Bootstrap

14. Sport Here - minimalistic website template

Sport Here - minimalistic website template

15. Crafty - responsive corporate website template

Crafty - responsive corporate website template

16. Infusion - One Page Portfolio Template

Infusion - One Page Portfolio Template

17. Yebo – HTML/CSS website template in flat style

Yebo – Flat Style HTML/CSS Website Template

18. Twenty - HTML5 template with parallax effect

Twenty - HTML5 template with parallax effect

19. Urbanic - Bootstrap template

Urbanic - Bootstrap template

20. Calm - Portfolio Template

Calm - Portfolio Template

21. Mamba - one-page template

Mamba - one page template

23. Brushed - one-page responsive website template

Brushed - one-page responsive website template

24. Big Picture - HTML5 website template

Big Picture - HTML5 website template

25. Tesselatte - free responsive website template

Tesselatte - Free Responsive Website Template

26. Overflow - responsive HTML5 website template

Overflow - responsive HTML5 website template

27. Runkeeper - mobile application website template

Runkeeper - mobile application website template

28. Pinball - Responsive Blog Template

Pinball - Responsive Blog Template

29. Bak One - one-page responsive website template

Bak One - one-page responsive website template

30. Andia - free website template

Andia - free website template

31. Produkta - 4 HTML templates in one

Produkta - 4 HTML templates in one

33. Studio Francesca - responsive website template

Studio Francesca - responsive website template

34. Prologue - HTML5 website template

This tutorial demonstrates the process of creating a simple 2-column template.

The template will consist of a header, a horizontal navigation bar, a sidebar, and a footer. It will also be centered horizontally in the browser window.

Step 1. Basic structure.

First, let's create the basic structure of the template.

And then we'll put some content into different sections:

Column 1

. . .

Now we have an HTML document with no styles at all. Next we will use CSS to build a template based on this document.

Step 2. Align the body and html elements.

Body, html ( margin:0; padding:0; color:#000; background:#a7a09a; )

Step 3. Main containers.

Now let's set the width and center the content area. To do this, set the values ​​for the width properties and the field of the main container #wrap . We’ll also set a background for it to make it stand out on the page.

The content-centering method relies on the fact that when you set an element's left and right margins to auto , they share the remaining space after subtracting the element's width from the container's width. In this case, the width of the #wrap element will be subtracted from the width of the browser window.

Note: In order for this method to work in Internet Explorer (versions 6 and older), document must use DOCTYPE, which will tell IE to use standard mode.

We do not use the body element to set the width and centering of the template, as this may cause unwanted effects in some versions of Internet Explorer.

Then we give different sections different background colors to make them stand out on the page.

#header ( background:#ddd; ) #nav ( background:#c99; ) #main ( background:#9c9; ) #sidebar ( background:#c9c; ) #footer ( background:#cc9; )

Step 4. Place the columns next to each other

To place columns next to each other (#main and #sidebar), make them floating and move one to the left and the other to the right. We also set the width of the columns.

#main ( float:left; width:500px; background:#9c9; ) #sidebar ( float:right; width:250px; background:#c9c; )

Please note that the sum of the column widths must be equal to the width of the #wrap element.

Now the #sidebar element appears to the right of the #main element, but the footer is out of place.

Step 5. Move the footer down

The footer does not fall into place because the float property is still in effect. When an element is floated, it is removed from the overall flow of the document and does not float down other elements that follow it. Therefore, the #footer element starts immediately below the #sidebar element.

To fix this, you need to set the clear property on the footer to tell it that it can't have other elements nearby.

#footer ( clear:both; background:#cc9; )

Step 6. Set the background for the sidebar

Now you can see that the shorter column does not extend to the footer. To make the appearance uniform, set the same background colors for the #sidebar and #wrap elements.

#sidebar ( float:right; width:250px; background:#99c; )

If you don't know which column will be longer and which will be shorter, you will have to use one of the methods to set the background color.

Step 7: Making the Navigation Bar Horizontal

The #nav element contains a regular unordered list of links. We need to change its appearance:

#nav ul ( margin:0; padding:0; list-style:none; ) #nav li ( display:inline; margin:0; padding:0; )

Step 8. Align margins, padding, and add compatibility with IE 6

Almost done. We need to align the margin and padding properties of some elements to make the template look more decent.

#header ( padding:5px 10px; background:#ddd; ) h1 ( margin:0; ) #nav ( padding:5px 10px; background:#c99; ) #main ( float:left; width:480px; padding:10px; background:#9c9; ) h2 ( margin:0 0 1em; ) #sidebar ( float:right; width:230px; padding:10px; background:#99c; ) #footer ( clear:both; padding:5px 10px; background: #cc9; ) #footer p ( margin:0; )

When adding padding to the #main and #sidebar elements, you need to subtract their right and left sizes from the width of the elements. Because we need to take into account the effect of the CSS rectangle model.

And now we need to compensate for the bug with floating elements in Internet Explorer 6. If you look at the result of step 6 in IE 6, you will notice that the footer is moved below #main . Try moving the page up and down if you don't notice the defect right away.

To fix this, let's use the HTML star method to set the footer height for IE 6 only:

* html #footer ( height:1px; )

This code may look a little strange, but due to another bug in IE, the footer cannot be one pixel high and will stretch to fit the content.

All presented templates for your website are built on modern versions of HTML5 and CSS3. In addition, the authors use such fashionable features as flat design, responsive design, adaptive layout, jQuery sliders, CSS3 animation, etc. That is, if you are looking for a mobile website template, you can choose any of the presented ones. Beautiful html5 templates 2017, although free, look premium.

Here you will find more than 50 free high-quality responsive website templates in HTML5 and CSS3, which can be used both for new sites and for redesigning existing ones. Stylish html5 website templates- This is what you need!

Updated 03/12/2019: Since the article was written 2 years ago, many links became broken. Either the owners of the templates merged, or changed the status of the templates from free to paid, or the aliens ruined everything. We ask you, dear readers, if you find such a link, leave it in the comments, I will correct it.

1. Snow - free landing page template using HTML5 and CSS3

Snow landing page html5 css3 template is built on Bootstrap framework. The template is very stylish and cool! A fixed background and a huge Jumbotron - a thing that shows the main content of the site. What is the most important thing on the landing page? That's right, a call to action. Naturally, the template is fully adapted for mobile devices. You can even use it as a basis for your own templates.

2. Sima - chic commercial website template

This html5 css3 template is also built on the Bootstrap framework. You can use this template to create a unique website with a portfolio, your team, prices, reviews and everything else that will be necessary. For example, this template is perfect for a website for cleaning services. The animation in this template is smooth and effective, the fonts are clean and easy to read. Just the perfect template!

3. White - a wonderful one-page template!

A distinctive feature of the White website template is two background options at the top. Your choice is either a slider with pictures or a video background. Very high quality and effective template for the site!

4. Platz - Free HTML5 Grid Based Website Template

A modern, visually appealing HTML5 website template designed on a grid basis (read more about the grid). Beautiful and responsive template design for a blog or website.

5. Mart eCommerce - beautiful HTML5 and CSS3 e-commerce website template

The fresh and stylish design of the website template is best suited for all types of fashion websites selling shoes, clothes, watches, accessories, sportswear, etc. It comes with a PSD file that you can adjust to suit your needs.

6. Nava - spectacular HTML5 and CSS3 template for creative websites

Nava is a modern HTML5 website template that is used mainly for creative professionals who want to show off their work in all its glory. Many variations of template settings allow you to make your website unique. Lightweight, beautiful and responsive website template.

7. Box Portfolio - a unique creative website template using HTML5 and CSS3

Box Portfolio website template has a clean and modern minimalistic design. Perfect for professionals who want to effectively display their work online. As the name suggests, the website template is ideally suited for a portfolio.

8. Mountain King - popular and functional HTML5 and CSS3 website template

The mountain theme in website design has been very popular lately. The Mountain King website template is no exception. Includes 336 vector icons from Typicons. Plus great animation using CSS3. The template is perfect for travel and portfolio websites.

9. Beauty Spa - cool HTML5 and CSS3 website template for spa salons

Beauty Spa is a responsive website template that has many features, ideal for spa sites, health or fitness centers, yoga sites or even hair salons. Excellent readability of fonts and unobtrusive minimalism.

10. Bent – ​​stylish and effective landing page for websites using HTML5 and CSS3

Bent is a great free website template in html5 and css3. Responsive design, CSS3 animation, parallax scrolling, custom navigation and other goodies. This is a clean template design for sites that want to use a balanced design to ensure that visitors enjoy the look and feel of the site while still clearly seeing its core content.

11. Triangle - Free Responsive Multipurpose HTML5 and CSS3 Template

Triangle is an exclusive creative HTML5 and CSS3 website template specifically for those who want to tweak their cool design, but not make it worse. The template comes with over 40 pre-designed pages that allow you to customize your site to your heart's content.

12. Future Imperfect - a brilliant website template for creative people!

Experience a genuine sense of fun with this website template, ideal for writers, authors, copywriters and other pen and paper workers. The template can also be used for a personal blog, a blog about travel, creativity, etc. Many people will like the creative design and adaptive layout of the template.

13. Bodo - a great template for a personal website

Bodo is a beautiful HTML5 and CSS3 website template that is ideal for a personal website. Especially for organizing a portfolio. Clean and crisp typography, carousel slider, pop-up windows to display work and much more.

14. Lens - the perfect HTML5 website template for photographers

Photographers are always looking for the perfect template for their website to show their work in all its glory, impressively and most importantly - large! A rare website template meets these requirements. Lens is one such photographer website template.

15. Spectral - a unique handmade website template using HTML5 and CSS3

If you are looking free website templates on auto topics, then Spectral will be the ideal solution. Here is a completely unique handcrafted one page website template design. The design can be changed at your discretion. With this template you can make a stunning website on absolutely any topic, be it an impressive travel blog or photo gallery, an automotive website or a hosting provider.

16. Oxygen - one-page HTML5 and CSS3 website template

Oxygen is a convenient and unique template for a business website. Modern flat design, adaptive layout. For example, this template is ideal for a site about mobile applications or mobile technology.

17. Mobirise Bootstrap - the perfect free website template on HTML5 and CSS3

If you're looking for a free website template, then Mobirise Bootstrap is perfect to get you started. This is a multifunctional template with a lot of extras included. Three pre-made homepage and blog layouts will help you with this. Mobirise Bootstrap is also 100% SEO optimized and adapts to any screen size.

18. La Casa - beautiful and free HTML5 template for a real estate website

The Brandy template is perfect for organizing a commercial real estate website. Responsive and very beautiful design will appeal not only to the site owner, but also to visitors.

19. Drifolio - stylish HTML5 website template for portfolio

Stylish and animated HTML5 and CSS3 website template for organizing a portfolio. Clean design, great typography, beautiful icons and much more.

20. Pluton - a bright and stylish template for a one-page website

Pluton is a bright and effective website template based on Bootstrap. A modern website template with its unique one-page layout and responsive design that is great for studios, photographers and creative designers.

21. SquadFree - professional one-page website template in HTML5

The SquadFree template is perfect for creating a commercial one-page website. The template not only looks professional, but is also adapted to all types of screens. The template is based on Bootstrap.

22. Sublime - a fascinating website template on HTML5 and CSS3

Sublime is a clean and stunningly beautiful HTML5 and CSS3 website template perfect for a startup, creative agency or portfolio site. Responsive design and two page options to choose from.

23. Timber - unusual and beautiful HTML5 and CSS3 website template

Timber is a fresh, stylish and unusual one-page website template theme. The diagonal is the main design feature of this template. The template is perfect for a business website or portfolio. There is a built-in gallery, map and contact information that you can easily adapt to your needs.

24. E-Shopper - the best e-commerce website template

E-Shopper is a great option for an e-commerce website template. Built on bootstrap with an amazing set of features for a complete and efficient online store.

25. Magnetic - free HTML5 and CSS3 template for a photo site

An absolutely stunning HTML5 and CSS3 template for creating a photo website or portfolio for a designer, illustrator or artist. This template takes the bar of professional templates to the next level! Responsive design, excellent support for all types of display devices, easy and convenient navigation and much more.

26. Mabur Portfolio - a beautiful website template in a minimalist style using HTML5 and CSS3

The flat design of this minimalist website template is perfect for creating a portfolio. In the template, all the details are checked perfectly!

27. Modern Bootstrap HTML5 - Free One Page Website Template

This free one-pager based on the Bootstrap framework is perfect for corporate websites, both for small and large companies. Flat design, adaptive layout, all high quality design elements. The template comes in 4 different colors.

28. Infusion - stylish one-page website template using HTML5 and CSS3

Infusion is a great example of an HTML5 and CSS3 website template that is specifically designed for creating a business portfolio. The rich functionality of this template allows you to effectively work with clients and attract new ones.

29. Yebo - corporate website template on HTML5 and CSS3

This high quality flat style website template is perfect for any corporate website. Adaptive design, tons of settings and editing options.

30. Twenty - spectacular HTML5 and CSS3 website template with parallax

This unique and very beautiful website template with parallax effect will not leave anyone indifferent. The one-page template is built on pure HTML5 and CSS3 with responsive layout, impressive backgrounds, social media support, etc.

31. Urbanic – excellent HTML5 and CSS3 website template on Bootstrap

Urbanic is a fresh and cool HTML5 and CSS3 website template built on the Bootstrap engine. Perfect for starting to create your website right away without any hassle. The template is perfectly adapted to any screen size.

32. Design Showcase - HTML5 portfolio website template

A visually harmonious and effective HTML5 website template for organizing your portfolio. The template is perfectly adapted for mobile devices, which is very difficult to do for sites of this format.

33. Mamba One - a simple and stylish website template using HTML5 and CSS3

Mamba One is an example of a simple yet stylish website template for creating a one-pager. Compatible with all modern browsers and will be displayed adequately everywhere.

34. KreativePixel - free website template for photographers

Another great website template for photographers. Responsive design and very convenient sorting of photos in portfolios and galleries will appeal to many photography lovers. The template also uses a parallax effect, which also impresses viewers when viewing photos.

35. Retina Ready Responsive App - free landing page template using HTML5 and CSS3

As the name suggests, this wonderful website template is not only ideal for landing pages, but also meets new mobile trends, especially in terms of display clarity on devices with Retina displays.

36. Brushed - responsive HTML5 and CSS3 website template based on the Bootstrap engine

Brushed is a responsive, free HTML5 and CSS3 website template based on the Bootstrap engine. Also optimized for Retina displays (iPhone, iPad, iPod Touch and MacBook Pro Retina).

37. Big Picture HTML5 and CSS3 website template

Welcome to Big Picture! This responsive HTML5 website template is perfect for all creative people who have something to show, and show it big and impressive on their website. In addition, the template uses excellent animation.

38. Tesselatte - Free Responsive HTML5 and CSS3 Template

A simple one-page template that takes into account all the necessary tools for successful website creation. Ideal for the personal blog of a writer, copywriter, or just a lover of the written word.

39. Overflow - a unique website template using HTML5 and CSS3

This unique pure HTML5 and CSS3 website template is perfect for any creative person. It is fully responsive and completely free.

40. Runkeeper - responsive and very beautiful website template

Runkeeper is a free, responsive and very beautiful website template. It can be used for a website of any subject. Brilliant style and clear fonts, responsive design and impressive template details. Everything works for you!

41. Pinball Responsive Grid Style - Great Grid Based Website Template

This amazing professional grid based website template is perfect for a corporate website. The modern flat design and responsive structure of the template are perfectly displayed on both large monitors and mobile devices.

42. Prologue - clean one-page website template using HTML5 and CSS3

This clean, simple and clear HTML5 and CSS3 website template is perfect for building a landing page. Minimalist design does not distract from the main thing. An eye-catching scrolling side navigation bar and clean page lines are just the perfect combination!

43. Helios - modern website template using pure HTML5 and CSS3

Another website template in the style of minimalism and clean forms. Specifically designed to take advantage of large display screens, but also perfectly adapted to the small screens of mobile devices.

44. Telephasic - free and responsive HTML5 website template

This modern, responsive and completely free website template has one big advantage - it is simple and concise, but this is exactly what many people lack.

45. Strongly Typed - a very beautiful website template in a semi-retro style

A new website template with a minimalistic semi-retro style. It’s just that retro is no longer in fashion, but a slight hint of it is very welcome. This website template is fully responsive, built on pure HTML5 and CSS3 and includes all the necessary core page elements. The Strongly Typed template is ideal for creative websites. For example, for a site about home decor.

46. ​​Striped - clean, beautiful and functional HTML5 and CSS3 website template

Fresh and clean, beautiful and functional, new website template in HTML5 and CSS3. It has in its arsenal all the necessary page elements, including designed quotes, tables and lists, as well as an adapted sidebar (on the right or left - as you wish).

47. Parallelism - an unusual and stylish website template using HTML5 and CSS3

Parallelism is a stylish website template for organizing your portfolio or photos. What makes it unusual is that the scrolling here is not vertical, as usual, but horizontal. This gives the site a special chic and memorability.

48. Miniport - fully responsive HTML5 website template in minimalist style

Excellent website template in minimalist style on HTML5. Perfect for a personal website/blog, as well as a small one-page corporate website or as a business card website.

49. Verti - spacious and free responsive HTML5 website template

The clean and spacious design of this website template is perfect for large corporate websites or commercial projects. Responsive and convenient for both the author and users.

50. ZeroFour - impressive and stylish website template using HTML5 and CSS3

And last on the list, but not the least in terms of quality and visual effectiveness, is the website template - ZeroFour. Stylish design, very beautiful menu, perfectly adjusted forms and buttons, beautiful icons and much more. And all this is absolutely free!

I hope you found something suitable for yourself among these amazing HTML5 and CSS3 website templates. Good luck!

Bookmark it so you can find it quickly.

PS: If you can’t make a choice, read the article “I don’t know what I want.” It will be useful.

Hello everyone friends! In this May post, I'll be introducing you to simple, clean, minimalist responsive WordPress templates and themes.

This is very relevant now, because design is the face of your website, and when it is crammed with everything and is replete with all the colors of the rainbow, it does not particularly inspire confidence, and sometimes even visual rejection.

My blog will also very soon be made in a simple style using rubber layout. By the way, in my note you can do it without any problems using a cool plugin. So, let's start reviewing the coolest and simplest responsive templates. There are 67 of them in total.

They are all free, you can download them and start using them right now. At the end of the article, I decided to make a gift for you, but don’t rush to go straight to the end of the post :) Let it be a little intrigue.. If you want to download the topics separately, then JUST CLICK ON THE TEMPLATE IMAGE

A simple template made in a minimalist style for authors and publicists, with a set of fonts and rubber layout. As always, nothing extra, just content.

Daily

Portfolio WordPress Theme. Simple and neat with a large slider. Of the special characteristics:

  • Unique page navigation
  • Built-in lightbox
  • 3 stylized widget areas
  • A clean WordPress template available on the official website of the same name. Portfolio theme with cool tile layout.

    Fukasawa

    A nice template for photographers with convenient display on mobile devices. Available on both large wide 27-inch Mac screens and 3.5-inch iPhones. You can change the background color at your discretion, upload your logo, the Sidebar includes an area of ​​5 widgets. Supports video and photo galleries. The design is made in the style of Pinterest markup. An experienced eye will notice this.

    Clean stylish design for photographers and designers. Can be downloaded from the official wordpress.org repository

    Cody

    A beautiful and versatile blog theme, designed simply and tastefully. Features of the theme:

    • Ready area with widgets (in the sidebar)
    • Easy installation, theme options for the page (you can set your own design for each)
    • Area for loading a custom logo,
    • Built-in Google font support and switchable typography (you can change fonts with one click)
    • Social icons
    • Simple SEO
    • Area for inserting statistics code and
    • Jquery PrettyPhoto Lightbox
    • Custom menu

    You need to register on the site to download the theme.

    Spacious minimalistic portfolio theme. Arrangement in the form of tiles.

    Pure

    A playful and clean theme for creative professionals. Let's take a look at its contents:

    • Wide format stretch design
    • Full display of all colors on Retina displays
    • Grid position of all elements
    • 5 different header types
    • Various portfolio styles (choice of columns from 1-4 to better display your work and create an original structure)
    • Valid HTML5 and CSS3 code and markup
    • GT3 page constructor (you can assemble your elements on the page visually).
    • Powerful functional themes
    • Fast and easy installation
    • Localized theme (for different languages)
    • 430 Font Awesome icons
    • Simple and easy color management
    • SEO friendly interface
    • 600+ fonts from Google
    • Extended documentation on the topic

    This is the power hidden in a simple and affordable free theme.

    Pho

    Good full-width theme (if you don't use a sidebar)

    2 page templates (standard and tile). The following fonts are supplied:

    • Helvetica
    • Cabin
    • Open Sans
    • Droid Sans
    • Droid Serif
    • Raleigh

    2 areas with widgets (footer and sidebar)

    • A simple responsive template ready for display on retina displays
    • Built-in social buttons in the header, footer, and pages
    • Add colors for the background, and you can also set a picture and all this can be easily switched
    • JetPack integration
    • 3 custom widgets – recent posts with thumbnails, recent comments, Flickr

    Blog theme with bold fonts.

    Stylish and simple responsive theme in flat style. Ideal for portfolio and business. This template:

    • Compatible with the latest versions of WordPress
    • Has extensive documentation for installation and operation J
    • User support from the developers themselves
    • Responsive design (looks good on any device, regardless of screen width)
    • Built-in “customizer” (upload a logo, change theme colors, change text in the site footer, insert tracking scripts in real time)
    • Custom widgets
    • Available for translation into many languages ​​(there are .po .mo files)
    • Hundreds of Google fonts and icons

    Rams

    A simple responsive template with lots of styles for bloggers.

    Time

    A simple one-column theme for a personal blog.

    Ravel

    A simple WordPress template made in two color combinations – light and dark. Perfect for those who want to show off their work (designers, web developers).

    Neat and clean magazine theme for WordPress

    Isola

    Ideal for displaying your recordings, photographs, video materials. Thanks to the arrangement of the elements, the theme seems to “breathe” freely, giving you the freedom to post content.

    For those publishers and webmasters who put content first.

    The good ghost has now moved into web design with its minimalistic and stylish approach. Download from the official WordPress website

    Just Write

    Multifunctional and clean magazine theme for WordPress.

    Catch Kathmandu

    This simple adaptive template does not have anything superfluous that can distract from the perception of information on the site. The large image at the top clearly captures the attention and imagination of your visitors. Nice sans serif fonts. You can also post status updates and sticky messages in this thread.

    Minimaliste displays all your content with extreme simplicity. You don't have to worry about your information getting lost on the page, since it doesn't have sidebars by default.

    It has a large slider that travels with you through the pages, and 11 nice fonts. It integrates social media icons and other options such as changing the background color and logo.

    This template is unique in that it has settings and options for all post formats. You can choose between one and two column options and change the color profile.

    It also has the ability to pin posts and set up WordPress tree comments. You can also choose either a sidebar on the right or an entire page with three widgets connected just below the content itself.

    WriterStrap



    Have questions?

    Report a typo

    Text that will be sent to our editors: