Design and Code Your First Website in 9 Easy-to-Understand Steps

Learning how to begin coding a website can be a tough task. If you’re not familiar with coding languages, it’s even harder. But learning how to code a website is easy with the right guide.

In this tutorial, we’ll go over simple website design for beginners with an HTML web page template. They’re the easiest way to code a website. It’s a process that will save you time in the long run, while letting you create a professionally designed website for your visitors!

Black male in front of computer screen coding mobile app web development computer programmingBlack male in front of computer screen coding mobile app web development computer programmingBlack male in front of computer screen coding mobile app web development computer programming
Black male in front of computer screen coding mobile app, web development, computer programming (Stock photo from Envato Elements)

We’ll be using a template from Envato Elements in this HTML web design code tutorial. If you want to browse other web design template options, look through the Envato Elements collection of website design code templates. You’ll find professional, responsive options that are ready to customize for your next project. 

Before We Start Our Web Design Code

You’re probably excited to learn how to begin coding a website. But looking at HTML website design code can be intimidating if you’re a beginner. So before we dive in, let’s have a look at some useful terms to know so you can understand the changes you’re making in the below steps to code a website.

  • HTML: Hypertext Markup Language is a language that organizes web pages. Things like text and links are added here. In this web design code tutorial, we’ll be working with HTML.
  • Tags: Tags are how code works in HTML. They are written between angle brackets. One tag opens (i.e. <title>) and another closes (i.e. </title>). Text content goes between the opening and closing tags. 
  • PHP: A server-side scripting language that is mostly used to build web-based applications. You’ll see it used to collect data. Almost all contact forms work with a PHP file. 
  • Comments: Comments are notes left by the writer of the code. These don’t change anything about the page, but they let you see what the code is supposed to do.

What We’ll Need

If you want to follow along with this simple web design code tutorial, you’ll need a couple of things:

  • Okno—Ultimate Multipurpose HTML5 Template. We’ll be editing a personal landing page from this HTML web page template.
  • Sublime Text editor. Sublime Text is what we’ll use to edit the markup.
  • Chrome, Safari, Firefox, or another web browser. You’ll need your browser to make sure your changes work properly.
Okno - Ultimate Multipurpose HTML5 TemplateOkno - Ultimate Multipurpose HTML5 TemplateOkno - Ultimate Multipurpose HTML5 Template

Do you have everything you need for this website design code tutorial? Then let’s get started!

1. Edit the Title and Header

Okno offers a lot of HTML design codes, but we’re working on the index-onepage-personal.html file in this tutorial. It’s a simple website design code template for beginners to work on. Open it in Sublime Text and your browser after extracting the Okno ZIP folder. Sublime Text will let you edit the sample HTML code for website design, and your browser will let you see the changes in real-time.

In Sublime Text, find the title tag under the title comment. This changes the name that appears on the tab or window of the page. It will look like this in the simple website HTML code:

Replace the text with the name of your site. Since this is a personal one-page website template, this will most likely be your own name. Save the file in Sublime Text, and refresh the page in your browser. You’ll see the changes to the web design code in the tab at the top of the window:

html code for website design project tutorial title taghtml code for website design project tutorial title taghtml code for website design project tutorial title tag

Let’s move on to the navigation bar of this simple website design for beginners. This bar is visible as visitors scroll, and it also includes a spot for a logo on the left. To change the logo, find the Logo comment and edit these lines of HTML design code:

Both lines are for your logo, but for different parts of your web design code page. The top line is for a light logo against a dark background. The bottom line is for a dark logo against a light background. This is to make sure your branding is visible on the page.

Place copies of your logo in the img folder found inside the assets folder. Change the file names in the website design code (logo-light.png and logo-dark.png) to match the file names of your logo.

Note: your logo should be in the PNG file format with a transparent background. Also, note that the alt attribute is very important for your webpage in case the photo doesn’t load or a visitor is using screen-reading software. Give an alternate description for all your images while working on this simple website HTML code tutorial. 

In this website design code template, the navigation bar represents different sections of the one-pager. If you don’t want to rename these sections, feel free to skip ahead.

Under the primary menu comment, you’ll see the names of each section. Edit the text between the a tags under the Primary Menu comment rename the links in your navigation bar. 

Save the simple website HTML code for this web design project and refresh to see your changes.

2. Update Your Personal Information

Now it’s time to start editing your information in the web design code. 

Let’s look at the section starting with the Section / Home comment. What can be changed here? We can replace the background image and avatar. You’ll also be able to add your name, job title, area of expertise, and other information.

how to code a website easy tutorial personal informationhow to code a website easy tutorial personal informationhow to code a website easy tutorial personal information

Let’s start by changing the images. You can edit the background photo from the bg-image div and the avatar from the img tag within the container v-center div. Unlike altering text, you’ll need to make changes to the img tag itself through the source attribute. The src attribute tells the webpage where the photo can be found. 

If we look at the src attribute for the background photo, we can see where to find the image. In your Finder or File Explorer, head to assets img >  photos to find the image file yourself.

To change the background image in your simple website HTML code, have a replacement JPG ready with the exact dimensions of the original file. Give your photo a simple name and place it in the photos folder. Now change the name in the src attribute, and save.

If you don’t have a replacement photo ready but want to change the background, head to Envato Elements. You can find a stock photo or cool graphic to use. For this simple website design for beginners tutorial, I’ll be using one of these stock background photos.

where to start coding a website tutorial background image changewhere to start coding a website tutorial background image changewhere to start coding a website tutorial background image change

Changing the avatar is the same process. Drop your headshot in the avatar folder within the img folder. Replace avatar01 with the name of your photo. Save the simple website HTML code for this web design project in Sublime Text and refresh your browser to see how it looks now.

where to start coding a website tutorial avatar changewhere to start coding a website tutorial avatar changewhere to start coding a website tutorial avatar change

Change the Name and Bio

Editing your name and bio takes a few simple steps. Find the H1 tag within the col-md-9 div, and add your name. On the line below, type in your job title.

There are three Description Lists under the Section / Home comment. They’re defined by the dl tag. They are where you can briefly add more professional information. As you can see in your browser, the default fields are SpecialtyBorn DatePrevious CompanyYears Experience, and Current Company. If you want to share this information, edit the dd tags within each dl. If you’d like to change this entire section, you’ll need to change the dt tags within each dl tag.

Made your changes? Save the simple website design HTML code file, refresh the page, and see your changes.

where to start coding a website tutorialwhere to start coding a website tutorialwhere to start coding a website tutorial

Notice that you can have visitors download your CV or resume by clicking a button. To set this up, we’ll first create a folder titled cv within the assets folder. Then, we’ll put our CV in this new folder.

Now let’s look at the HTML and figure out how to make this work. Head to the Download CV line in the sample HTML code for website design:  

We are going to replace the # in the href attribute with assets/cv/name-of-cv-file.extension. To make the CV downloadable, add the download attribute after the href attribute. The line in your sample HTML code for website design should now look like this: 

Save the HTML code for this web design project and test it out in your browser. Note that for now you’ll only be able to open the file from the button. But once your website goes live, visitors will be able to download your resume.

3. Services Section

Let’s add the services we offer to our sample HTML code for website design. If you changed the name of this section, or any other sections, in Step 1, you can still follow along with the rest of the tutorial. Just make sure to change the h6 tag in each step.

Change the name of the first service with the Mobile Apps h5 tag. This can be any service you offer. On the following line, give a brief description of your service in the p tag. Save the website design code file and see the changes in your browser.

web designing in html code project tutorial services sectionweb designing in html code project tutorial services sectionweb designing in html code project tutorial services section

Looks like we might run into a problem. If you changed the name of the service, the mobile app icon no longer matches up. That’s not a problem. Okno uses Themify Icons. These are free web icons for personal and commercial use.

Search for a matching icon from the Themify link above. Add the name of the icon’s attribute in the i tag. For this example, I will use the ti-shortcode icon. Let’s see how that looks now:

web designing in html code project tutorial icon changeweb designing in html code project tutorial icon changeweb designing in html code project tutorial icon change

That’s better. Repeat this process for the rest of your services to edit the Desktop Apps, Graphic Design, HTML/CSS Development, and AngularJS lines of the sample HTML code for website design.

web designing in html code project tutorial icon changesweb designing in html code project tutorial icon changesweb designing in html code project tutorial icon changes

4. Add Your Skills

This is a well-designed section in this simple website design for beginners. As you can see in your browser, the skills section has a meter to show your proficiency. This can be edited in the web design code under the Skills comment.

You can change the skills that you want visitors to see. The names of these skills are found in the strong tag under the Section / Skills comment.

How good are you at performing this skill? To show this off on your site, we need to backtrack to the progress-bar div. Within the div tag, we are going to edit the aria-valuenow attribute, as well as the style attribute. These values will use the same number to represent your skill level out of 100. If you’d like to put 97 out of 100, make that change in both attributes. Your changes should match the code below.

Save and refresh your browser window to see your new skills! You can repeat this step to finish the rest of your skills section in your web design code.

html code for website design project tutorial skills section progress barhtml code for website design project tutorial skills section progress barhtml code for website design project tutorial skills section progress bar

5. Education and Job Experience

This is the section in our web design code that lets us add education and job experience.

We’ll edit the three tags within the event class div. The first line lets us edit the date, the following line is for the title of your education or work experience, and the final line is for the location. So if I wanted to share my three-month rocket science course at NASA, I’d edit the code to look like this: 

You can repeat these steps for the other two event class div tags.

html made easy web design for beginners tutorial experience sectionhtml made easy web design for beginners tutorial experience sectionhtml made easy web design for beginners tutorial experience section

6. Testimonials

If you’re following these steps to code a website as a freelancer, then you know how important this section is. Testimonials from past customers, clients, and bosses go a long way towards persuading someone to trust you with their next project.

This section starts under the Section / Testimonials comment. These quotes have special formatting that we’re going to leave as they are. All we’re going to do is edit the text found in the div tag. If you have an exact quote you want to use, add it here. Use the strong tag to make parts of the testimonial stand out with bold text.

If you have a headshot of the person giving the testimonial, add it to the img tags in this Testimonial section. If not, feel free to remove that line of code. The following two lines of code let you finish the testimonial with the person’s name and job title.

Repeat these steps in your sample HTML code for website design to finish this section.

html made easy web design for beginners tutorial testimonial sectionhtml made easy web design for beginners tutorial testimonial sectionhtml made easy web design for beginners tutorial testimonial section

7. Media

Do you have photos of your work that you’d like to share? You can have them ready for your simple website HTML code in this step.

Before we get started, it’s important to note that getting the exact dimensions of your photos is important for this section. Each photo must be exactly 640×563. Use Adobe Photoshop to resize your images. If you don’t have the program, you can use a free website like Pixlr or Photopea.

Once you have your pictures ready, let’s see how we can add them to our website. Find the Section / Works comment, then the img tags under the Media Item comments. We can change our photo with a familiar line of code. If we read this line, we can see that we need to have our photos within the works folder, which is found in the img folder. We’ll also need to change the file name so our website knows which photo to use. 

Let’s make these changes and save. Refresh your browser to see your photo.

html made easy web design for beginners tutorial works sectionhtml made easy web design for beginners tutorial works sectionhtml made easy web design for beginners tutorial works section

You may notice that hovering over your photo shows a special effect. It looks as if we can leave a brief description of the project shown in the picture. Let’s take full advantage of this HTML web page template and add a brief description.

Backtrack to the h5 tags under the Media Item comments of the sample HTML code for website design. On the first line, let’s leave the name of this project. In the second line, let’s add a related service that was needed to finish the project. 

If this work is available to see online, we can link to it. In the a tag under the Media Item comment, replace the # in the href attribute with the link to the webpage featuring your project. Try linking to Google to see how this works.

This section lets you share up to six projects. Follow the steps above for each piece of work you’d like to share.

html made easy web design for beginners tutorial works section hoverhtml made easy web design for beginners tutorial works section hoverhtml made easy web design for beginners tutorial works section hover

8. Contact Section

Now is the time to set up the contact information in the HTML code for this web design project. This is an easy step to get done in your web design code.

We start by adding your headshot in the img tag under the Section / Content comment. This follows the same process that we talked about in the second step of this web design code tutorial. 

Within the address tag under the Section / Content comment, we’ll add our address, phone number, and email address. Feel free to change the type of contact information you share by editing what’s within the strong tags.

The contact form doesn’t need many changes. If you’d like to add a fun spin to the default text, just change the placeholder attributes found within the form tag. You can change the text of the button with the button tag.

But will our contact form work? Not yet! We need to make a very quick edit to our PHP file. In your Finder or File Explorer, go to assets > php within the Okno folder. Then open the contact-form.php file in Sublime Text.

In this file, you’ll see the following line of code:

Replace the example email with your own email address, and save the web design code file. Now, when a visitor completes the contact form, you will get an email telling you what they said.

sample code for website design tutorial contact form move mesample code for website design tutorial contact form move mesample code for website design tutorial contact form move me

9. Edit the Footer

This is the last of our steps to code a website. The footer of this one-page website features a copyright credit to the creators of the Okno web template and three links. You can remove the footer entirely, remove some elements, or edit the links. If you want to edit the links, I’ll walk you through how to do that.

html made easy web design for beginners tutorial footerhtml made easy web design for beginners tutorial footerhtml made easy web design for beginners tutorial footer

Under the Footer comment of the sample HTML code for website design, you’ll find the following list item:

Within the href attribute, replace the # symbol with a link to a website you want to share. This change will let visitors go to that website by clicking on Sign Up. You can change this text to anything you’d like. Repeat this process for the next two list items.

We’re Done!

Congrats, you successfully followed the steps to code a website with a web template! This process saves you a lot of time if you’re creating a site for yourself or a client. And as you can see, it’s one of the easiest ways to build a website. 

Find Awesome HTML Web Page Templates From Envato Elements

If you liked the web template we used in this tutorial, you can find even more variety on Envato Elements. There are a ton of modern choices for you, and you’ll be able to edit them just as easily as Okno. Here are just a few options you could try that are found on Envato Elements.

1. Aster- Creative Portfolio & Agency HTML Template

Aster Creative Portfolio Sample HTML Code for Website DesignAster Creative Portfolio Sample HTML Code for Website DesignAster Creative Portfolio Sample HTML Code for Website Design

If you don’t know too much coding for web design, Aster will still let you create a stunning website. This HTML template is made for digital portfolios and creative agencies. There are more than five home page samples to choose from, as well as over 17 inner plages. The code is clean and commented, making Aster one of the easiest ways to code a website. 

2. AppStorm: App Startup Template

AppStorm App Startup Simple Website HTML Code Web Design TemplateAppStorm App Startup Simple Website HTML Code Web Design TemplateAppStorm App Startup Simple Website HTML Code Web Design Template

Here’s the perfect HTML web page template for a tech startup. AppStorm is designed with promoting software in mind. The layout is incredibly modern and functional, as well as being made for mobile. Choose from three different home page designs and customization options for the perfect look. AppStorm is the easiest way to code a website for your new app or SaaS product.

3. Jadusona: eCommerce Baby Shop Bootstrap4 Template

Jadusona Website Design Code Web Design TemplateJadusona Website Design Code Web Design TemplateJadusona Website Design Code Web Design Template

Jadusona is a minimal, easy-to-use e-commerce website. You’ll have a variety of page demos to use to show off your baby and child products. Get your online baby shop ready thanks to Jadusona’s features, like:

  • fully responsive design
  • clean code
  • included Google Fonts
  • Ajax contact form

Try Jadusona if you’ve been looking for web design examples for beginners to start your website.

4. Erika: Portfolio, CV and Resume HTML Template

Erika Website Design Code HTML Web Design TemplateErika Website Design Code HTML Web Design TemplateErika Website Design Code HTML Web Design Template

Complement your physical CV or resume with Erika. This online landing page is the perfect place to tell visitors everything about you and your skills. Show off your services, portfolio, and more with Erika. It’s retina-ready, cross-browser compatible, and responsive, so visitors can browse from any device. Basically, Erika is everything you’ll need from a personal web template download.

5. Emily: Personal Blog HTML Template

Emily Personal Blog Simple Website Design HTML Code Web Page TemplateEmily Personal Blog Simple Website Design HTML Code Web Page TemplateEmily Personal Blog Simple Website Design HTML Code Web Page Template

Give your content the aesthetic platform it deserves with Emily. This personal blog HTML web page template comes with over 14 HTML pages for you to build your site. Its design is fully responsive and cross-browser compatible, so visitors can enjoy your blog on any device. If you want to learn about web designing in HTML code, a project like Emily will show you how it’s done.

Find Even More HTML Web Page Templates

If you’re still unsure of how to begin coding a website, having options is a good place to start. The web design templates featured above are some of the best web design examples for beginners you can find online today. If you want to look at premium options with clean code, check out these articles from the Envato Tuts+ team.

Learn More About Code With Envato Tuts+

Whether you’re a beginner or are experienced with code, there’s always something new to learn. If you’d like to find video tutorials and guides to help you along, check out the Envato Tuts+ YouTube channel. There are hundreds of video tutorials available, including for code. Just check out our code video guide playlist. Here’s a look at what you can find: 

There are also written tutorial guides and courses available on the Envato Tuts+ website. Below are a few you can get started with.

Keep Exploring the World of Code!

Today you learned how to begin coding a website with a web template and looked at some excellent template options. Web design templates are perfect if you want HTML made easy, or quick web design for beginners and experts.

Remember, you can find more useful web design templates from Envato Elements with your subscription. There are even more HTML web page templates from ThemeForest, which you can purchase without a membership.

If you’re interested in designing more web pages, you can find more tutorials on our site and YouTube channel.

Learning how to begin coding a website can be a tough task. If you’re not familiar with coding languages, it’s even harder. But learning how to code a website is easy with the right guide.

In this tutorial, we’ll go over simple website design for beginners with an HTML web page template. They’re the easiest way to code a website. It’s a process that will save you time in the long run, while letting you create a professionally designed website for your visitors!

Black male in front of computer screen coding mobile app web development computer programmingBlack male in front of computer screen coding mobile app web development computer programmingBlack male in front of computer screen coding mobile app web development computer programming
Black male in front of computer screen coding mobile app, web development, computer programming (Stock photo from Envato Elements)

We’ll be using a template from Envato Elements in this HTML web design code tutorial. If you want to browse other web design template options, look through the Envato Elements collection of website design code templates. You’ll find professional, responsive options that are ready to customize for your next project. 

Before We Start Our Web Design Code

You’re probably excited to learn how to begin coding a website. But looking at HTML website design code can be intimidating if you’re a beginner. So before we dive in, let’s have a look at some useful terms to know so you can understand the changes you’re making in the below steps to code a website.

  • HTML: Hypertext Markup Language is a language that organizes web pages. Things like text and links are added here. In this web design code tutorial, we’ll be working with HTML.
  • Tags: Tags are how code works in HTML. They are written between angle brackets. One tag opens (i.e. <title>) and another closes (i.e. </title>). Text content goes between the opening and closing tags. 
  • PHP: A server-side scripting language that is mostly used to build web-based applications. You’ll see it used to collect data. Almost all contact forms work with a PHP file. 
  • Comments: Comments are notes left by the writer of the code. These don’t change anything about the page, but they let you see what the code is supposed to do.

What We’ll Need

If you want to follow along with this simple web design code tutorial, you’ll need a couple of things:

  • Okno—Ultimate Multipurpose HTML5 Template. We’ll be editing a personal landing page from this HTML web page template.
  • Sublime Text editor. Sublime Text is what we’ll use to edit the markup.
  • Chrome, Safari, Firefox, or another web browser. You’ll need your browser to make sure your changes work properly.
Okno - Ultimate Multipurpose HTML5 TemplateOkno - Ultimate Multipurpose HTML5 TemplateOkno - Ultimate Multipurpose HTML5 Template

Do you have everything you need for this website design code tutorial? Then let’s get started!

1. Edit the Title and Header

Okno offers a lot of HTML design codes, but we’re working on the index-onepage-personal.html file in this tutorial. It’s a simple website design code template for beginners to work on. Open it in Sublime Text and your browser after extracting the Okno ZIP folder. Sublime Text will let you edit the sample HTML code for website design, and your browser will let you see the changes in real-time.

In Sublime Text, find the title tag under the title comment. This changes the name that appears on the tab or window of the page. It will look like this in the simple website HTML code:

Replace the text with the name of your site. Since this is a personal one-page website template, this will most likely be your own name. Save the file in Sublime Text, and refresh the page in your browser. You’ll see the changes to the web design code in the tab at the top of the window:

html code for website design project tutorial title taghtml code for website design project tutorial title taghtml code for website design project tutorial title tag

Let’s move on to the navigation bar of this simple website design for beginners. This bar is visible as visitors scroll, and it also includes a spot for a logo on the left. To change the logo, find the Logo comment and edit these lines of HTML design code:

Both lines are for your logo, but for different parts of your web design code page. The top line is for a light logo against a dark background. The bottom line is for a dark logo against a light background. This is to make sure your branding is visible on the page.

Place copies of your logo in the img folder found inside the assets folder. Change the file names in the website design code (logo-light.png and logo-dark.png) to match the file names of your logo.

Note: your logo should be in the PNG file format with a transparent background. Also, note that the alt attribute is very important for your webpage in case the photo doesn’t load or a visitor is using screen-reading software. Give an alternate description for all your images while working on this simple website HTML code tutorial. 

In this website design code template, the navigation bar represents different sections of the one-pager. If you don’t want to rename these sections, feel free to skip ahead.

Under the primary menu comment, you’ll see the names of each section. Edit the text between the a tags under the Primary Menu comment rename the links in your navigation bar. 

Save the simple website HTML code for this web design project and refresh to see your changes.

2. Update Your Personal Information

Now it’s time to start editing your information in the web design code. 

Let’s look at the section starting with the Section / Home comment. What can be changed here? We can replace the background image and avatar. You’ll also be able to add your name, job title, area of expertise, and other information.

how to code a website easy tutorial personal informationhow to code a website easy tutorial personal informationhow to code a website easy tutorial personal information

Let’s start by changing the images. You can edit the background photo from the bg-image div and the avatar from the img tag within the container v-center div. Unlike altering text, you’ll need to make changes to the img tag itself through the source attribute. The src attribute tells the webpage where the photo can be found. 

If we look at the src attribute for the background photo, we can see where to find the image. In your Finder or File Explorer, head to assets img >  photos to find the image file yourself.

To change the background image in your simple website HTML code, have a replacement JPG ready with the exact dimensions of the original file. Give your photo a simple name and place it in the photos folder. Now change the name in the src attribute, and save.

If you don’t have a replacement photo ready but want to change the background, head to Envato Elements. You can find a stock photo or cool graphic to use. For this simple website design for beginners tutorial, I’ll be using one of these stock background photos.

where to start coding a website tutorial background image changewhere to start coding a website tutorial background image changewhere to start coding a website tutorial background image change

Changing the avatar is the same process. Drop your headshot in the avatar folder within the img folder. Replace avatar01 with the name of your photo. Save the simple website HTML code for this web design project in Sublime Text and refresh your browser to see how it looks now.

where to start coding a website tutorial avatar changewhere to start coding a website tutorial avatar changewhere to start coding a website tutorial avatar change

Change the Name and Bio

Editing your name and bio takes a few simple steps. Find the H1 tag within the col-md-9 div, and add your name. On the line below, type in your job title.

There are three Description Lists under the Section / Home comment. They’re defined by the dl tag. They are where you can briefly add more professional information. As you can see in your browser, the default fields are SpecialtyBorn DatePrevious CompanyYears Experience, and Current Company. If you want to share this information, edit the dd tags within each dl. If you’d like to change this entire section, you’ll need to change the dt tags within each dl tag.

Made your changes? Save the simple website design HTML code file, refresh the page, and see your changes.

where to start coding a website tutorialwhere to start coding a website tutorialwhere to start coding a website tutorial

Notice that you can have visitors download your CV or resume by clicking a button. To set this up, we’ll first create a folder titled cv within the assets folder. Then, we’ll put our CV in this new folder.

Now let’s look at the HTML and figure out how to make this work. Head to the Download CV line in the sample HTML code for website design:  

We are going to replace the # in the href attribute with assets/cv/name-of-cv-file.extension. To make the CV downloadable, add the download attribute after the href attribute. The line in your sample HTML code for website design should now look like this: 

Save the HTML code for this web design project and test it out in your browser. Note that for now you’ll only be able to open the file from the button. But once your website goes live, visitors will be able to download your resume.

3. Services Section

Let’s add the services we offer to our sample HTML code for website design. If you changed the name of this section, or any other sections, in Step 1, you can still follow along with the rest of the tutorial. Just make sure to change the h6 tag in each step.

Change the name of the first service with the Mobile Apps h5 tag. This can be any service you offer. On the following line, give a brief description of your service in the p tag. Save the website design code file and see the changes in your browser.

web designing in html code project tutorial services sectionweb designing in html code project tutorial services sectionweb designing in html code project tutorial services section

Looks like we might run into a problem. If you changed the name of the service, the mobile app icon no longer matches up. That’s not a problem. Okno uses Themify Icons. These are free web icons for personal and commercial use.

Search for a matching icon from the Themify link above. Add the name of the icon’s attribute in the i tag. For this example, I will use the ti-shortcode icon. Let’s see how that looks now:

web designing in html code project tutorial icon changeweb designing in html code project tutorial icon changeweb designing in html code project tutorial icon change

That’s better. Repeat this process for the rest of your services to edit the Desktop Apps, Graphic Design, HTML/CSS Development, and AngularJS lines of the sample HTML code for website design.

web designing in html code project tutorial icon changesweb designing in html code project tutorial icon changesweb designing in html code project tutorial icon changes

4. Add Your Skills

This is a well-designed section in this simple website design for beginners. As you can see in your browser, the skills section has a meter to show your proficiency. This can be edited in the web design code under the Skills comment.

You can change the skills that you want visitors to see. The names of these skills are found in the strong tag under the Section / Skills comment.

How good are you at performing this skill? To show this off on your site, we need to backtrack to the progress-bar div. Within the div tag, we are going to edit the aria-valuenow attribute, as well as the style attribute. These values will use the same number to represent your skill level out of 100. If you’d like to put 97 out of 100, make that change in both attributes. Your changes should match the code below.

Save and refresh your browser window to see your new skills! You can repeat this step to finish the rest of your skills section in your web design code.

html code for website design project tutorial skills section progress barhtml code for website design project tutorial skills section progress barhtml code for website design project tutorial skills section progress bar

5. Education and Job Experience

This is the section in our web design code that lets us add education and job experience.

We’ll edit the three tags within the event class div. The first line lets us edit the date, the following line is for the title of your education or work experience, and the final line is for the location. So if I wanted to share my three-month rocket science course at NASA, I’d edit the code to look like this: 

You can repeat these steps for the other two event class div tags.

html made easy web design for beginners tutorial experience sectionhtml made easy web design for beginners tutorial experience sectionhtml made easy web design for beginners tutorial experience section

6. Testimonials

If you’re following these steps to code a website as a freelancer, then you know how important this section is. Testimonials from past customers, clients, and bosses go a long way towards persuading someone to trust you with their next project.

This section starts under the Section / Testimonials comment. These quotes have special formatting that we’re going to leave as they are. All we’re going to do is edit the text found in the div tag. If you have an exact quote you want to use, add it here. Use the strong tag to make parts of the testimonial stand out with bold text.

If you have a headshot of the person giving the testimonial, add it to the img tags in this Testimonial section. If not, feel free to remove that line of code. The following two lines of code let you finish the testimonial with the person’s name and job title.

Repeat these steps in your sample HTML code for website design to finish this section.

html made easy web design for beginners tutorial testimonial sectionhtml made easy web design for beginners tutorial testimonial sectionhtml made easy web design for beginners tutorial testimonial section

7. Media

Do you have photos of your work that you’d like to share? You can have them ready for your simple website HTML code in this step.

Before we get started, it’s important to note that getting the exact dimensions of your photos is important for this section. Each photo must be exactly 640×563. Use Adobe Photoshop to resize your images. If you don’t have the program, you can use a free website like Pixlr or Photopea.

Once you have your pictures ready, let’s see how we can add them to our website. Find the Section / Works comment, then the img tags under the Media Item comments. We can change our photo with a familiar line of code. If we read this line, we can see that we need to have our photos within the works folder, which is found in the img folder. We’ll also need to change the file name so our website knows which photo to use. 

Let’s make these changes and save. Refresh your browser to see your photo.

html made easy web design for beginners tutorial works sectionhtml made easy web design for beginners tutorial works sectionhtml made easy web design for beginners tutorial works section

You may notice that hovering over your photo shows a special effect. It looks as if we can leave a brief description of the project shown in the picture. Let’s take full advantage of this HTML web page template and add a brief description.

Backtrack to the h5 tags under the Media Item comments of the sample HTML code for website design. On the first line, let’s leave the name of this project. In the second line, let’s add a related service that was needed to finish the project. 

If this work is available to see online, we can link to it. In the a tag under the Media Item comment, replace the # in the href attribute with the link to the webpage featuring your project. Try linking to Google to see how this works.

This section lets you share up to six projects. Follow the steps above for each piece of work you’d like to share.

html made easy web design for beginners tutorial works section hoverhtml made easy web design for beginners tutorial works section hoverhtml made easy web design for beginners tutorial works section hover

8. Contact Section

Now is the time to set up the contact information in the HTML code for this web design project. This is an easy step to get done in your web design code.

We start by adding your headshot in the img tag under the Section / Content comment. This follows the same process that we talked about in the second step of this web design code tutorial. 

Within the address tag under the Section / Content comment, we’ll add our address, phone number, and email address. Feel free to change the type of contact information you share by editing what’s within the strong tags.

The contact form doesn’t need many changes. If you’d like to add a fun spin to the default text, just change the placeholder attributes found within the form tag. You can change the text of the button with the button tag.

But will our contact form work? Not yet! We need to make a very quick edit to our PHP file. In your Finder or File Explorer, go to assets > php within the Okno folder. Then open the contact-form.php file in Sublime Text.

In this file, you’ll see the following line of code:

Replace the example email with your own email address, and save the web design code file. Now, when a visitor completes the contact form, you will get an email telling you what they said.

sample code for website design tutorial contact form move mesample code for website design tutorial contact form move mesample code for website design tutorial contact form move me

9. Edit the Footer

This is the last of our steps to code a website. The footer of this one-page website features a copyright credit to the creators of the Okno web template and three links. You can remove the footer entirely, remove some elements, or edit the links. If you want to edit the links, I’ll walk you through how to do that.

html made easy web design for beginners tutorial footerhtml made easy web design for beginners tutorial footerhtml made easy web design for beginners tutorial footer

Under the Footer comment of the sample HTML code for website design, you’ll find the following list item:

Within the href attribute, replace the # symbol with a link to a website you want to share. This change will let visitors go to that website by clicking on Sign Up. You can change this text to anything you’d like. Repeat this process for the next two list items.

We’re Done!

Congrats, you successfully followed the steps to code a website with a web template! This process saves you a lot of time if you’re creating a site for yourself or a client. And as you can see, it’s one of the easiest ways to build a website. 

Find Awesome HTML Web Page Templates From Envato Elements

If you liked the web template we used in this tutorial, you can find even more variety on Envato Elements. There are a ton of modern choices for you, and you’ll be able to edit them just as easily as Okno. Here are just a few options you could try that are found on Envato Elements.

1. Aster- Creative Portfolio & Agency HTML Template

Aster Creative Portfolio Sample HTML Code for Website DesignAster Creative Portfolio Sample HTML Code for Website DesignAster Creative Portfolio Sample HTML Code for Website Design

If you don’t know too much coding for web design, Aster will still let you create a stunning website. This HTML template is made for digital portfolios and creative agencies. There are more than five home page samples to choose from, as well as over 17 inner plages. The code is clean and commented, making Aster one of the easiest ways to code a website. 

2. AppStorm: App Startup Template

AppStorm App Startup Simple Website HTML Code Web Design TemplateAppStorm App Startup Simple Website HTML Code Web Design TemplateAppStorm App Startup Simple Website HTML Code Web Design Template

Here’s the perfect HTML web page template for a tech startup. AppStorm is designed with promoting software in mind. The layout is incredibly modern and functional, as well as being made for mobile. Choose from three different home page designs and customization options for the perfect look. AppStorm is the easiest way to code a website for your new app or SaaS product.

3. Jadusona: eCommerce Baby Shop Bootstrap4 Template

Jadusona Website Design Code Web Design TemplateJadusona Website Design Code Web Design TemplateJadusona Website Design Code Web Design Template

Jadusona is a minimal, easy-to-use e-commerce website. You’ll have a variety of page demos to use to show off your baby and child products. Get your online baby shop ready thanks to Jadusona’s features, like:

  • fully responsive design
  • clean code
  • included Google Fonts
  • Ajax contact form

Try Jadusona if you’ve been looking for web design examples for beginners to start your website.

4. Erika: Portfolio, CV and Resume HTML Template

Erika Website Design Code HTML Web Design TemplateErika Website Design Code HTML Web Design TemplateErika Website Design Code HTML Web Design Template

Complement your physical CV or resume with Erika. This online landing page is the perfect place to tell visitors everything about you and your skills. Show off your services, portfolio, and more with Erika. It’s retina-ready, cross-browser compatible, and responsive, so visitors can browse from any device. Basically, Erika is everything you’ll need from a personal web template download.

5. Emily: Personal Blog HTML Template

Emily Personal Blog Simple Website Design HTML Code Web Page TemplateEmily Personal Blog Simple Website Design HTML Code Web Page TemplateEmily Personal Blog Simple Website Design HTML Code Web Page Template

Give your content the aesthetic platform it deserves with Emily. This personal blog HTML web page template comes with over 14 HTML pages for you to build your site. Its design is fully responsive and cross-browser compatible, so visitors can enjoy your blog on any device. If you want to learn about web designing in HTML code, a project like Emily will show you how it’s done.

Find Even More HTML Web Page Templates

If you’re still unsure of how to begin coding a website, having options is a good place to start. The web design templates featured above are some of the best web design examples for beginners you can find online today. If you want to look at premium options with clean code, check out these articles from the Envato Tuts+ team.

Learn More About Code With Envato Tuts+

Whether you’re a beginner or are experienced with code, there’s always something new to learn. If you’d like to find video tutorials and guides to help you along, check out the Envato Tuts+ YouTube channel. There are hundreds of video tutorials available, including for code. Just check out our code video guide playlist. Here’s a look at what you can find: 


There are also written tutorial guides and courses available on the Envato Tuts+ website. Below are a few you can get started with.

Keep Exploring the World of Code!

Today you learned how to begin coding a website with a web template and looked at some excellent template options. Web design templates are perfect if you want HTML made easy, or quick web design for beginners and experts.

Remember, you can find more useful web design templates from Envato Elements with your subscription. There are even more HTML web page templates from ThemeForest, which you can purchase without a membership.

If you’re interested in designing more web pages, you can find more tutorials on our site and YouTube channel.


Print Share Comment Cite Upload Translate
APA
Nathan Umoh | Sciencx (2024-03-28T20:50:28+00:00) » Design and Code Your First Website in 9 Easy-to-Understand Steps. Retrieved from https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/.
MLA
" » Design and Code Your First Website in 9 Easy-to-Understand Steps." Nathan Umoh | Sciencx - Monday January 20, 2014, https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/
HARVARD
Nathan Umoh | Sciencx Monday January 20, 2014 » Design and Code Your First Website in 9 Easy-to-Understand Steps., viewed 2024-03-28T20:50:28+00:00,<https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/>
VANCOUVER
Nathan Umoh | Sciencx - » Design and Code Your First Website in 9 Easy-to-Understand Steps. [Internet]. [Accessed 2024-03-28T20:50:28+00:00]. Available from: https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/
CHICAGO
" » Design and Code Your First Website in 9 Easy-to-Understand Steps." Nathan Umoh | Sciencx - Accessed 2024-03-28T20:50:28+00:00. https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/
IEEE
" » Design and Code Your First Website in 9 Easy-to-Understand Steps." Nathan Umoh | Sciencx [Online]. Available: https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/. [Accessed: 2024-03-28T20:50:28+00:00]
rf:citation
» Design and Code Your First Website in 9 Easy-to-Understand Steps | Nathan Umoh | Sciencx | https://www.scien.cx/2014/01/20/design-and-code-your-first-website-in-9-easy-to-understand-steps/ | 2024-03-28T20:50:28+00:00
https://github.com/addpipe/simple-recorderjs-demo