1. Edit the Title and Header
Design and Code Your First Website in 9 Easy-to-Understand Steps 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 Design and Code Your First Website in 9 Easy-to-Understand Steps 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 Logo comment and edit these lines of HTML design code:
<!-- Logo --><br> <a class="logo-wrapper" href="index.html"><br> <img class="logo logo-light lazy" src="/static/imghwm/default1.png" data-src="assets/img/logo-light.png" alt="Design and Code Your First Website in 9 Easy-to-Understand Steps"><br> <img class="logo logo-dark lazy" src="/static/imghwm/default1.png" data-src="assets/img/logo-dark.png" alt="Design and Code Your First Website in 9 Easy-to-Understand Steps"><br> </a><br>
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.
Your logo should be in the PNG file format with a transparent backgroundNote that the a tags under 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.

Let’s start by changing the images. You can edit the background photo from the bg-image img tag within the container v-center img tag itself through the source attribute. 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 H1 tag within the col-md-9 Section / Home comment. They’re defined by the dd tags within each dt tags within each href attribute with assets/cv/name-of-cv-file.extension. To make the CV downloadable, add the href attribute. The line in your sample HTML code for website design should now look like this:
<div class="col-sm-4"><a href="assets/cv/my-resume.docx" download class="btn btn-primary btn-filled btn-block">Download CV</a></div><br>
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 h5 tag. This can be any service you offer. On the following line, give a brief description of your service in the i tag. For this example, I will use the strong tag under the div. Within the aria-valuenow attribute, as well as the 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:
<!-- Logo --><br> <a class="logo-wrapper" href="index.html"><br> <img class="logo logo-light lazy" src="/static/imghwm/default1.png" data-src="assets/img/logo-light.png" alt="Design and Code Your First Website in 9 Easy-to-Understand Steps"><br> <img class="logo logo-dark lazy" src="/static/imghwm/default1.png" data-src="assets/img/logo-dark.png" alt="Design and Code Your First Website in 9 Easy-to-Understand Steps"><br> </a><br>
You can repeat these steps for the other two event class 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 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 Section / Works comment, then 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.
<div class="col-sm-4"><a href="assets/cv/my-resume.docx" download class="btn btn-primary btn-filled btn-block">Download CV</a></div><br>
Let’s make these changes and save. Refresh your browser to see your photo.

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 a tag under 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.

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 Section / Content comment. This follows the same process that we talked about in the second step of this web design code tutorial.
Within 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 placeholder attributes found within the button tag.
<!-- Logo --><br> <a class="logo-wrapper" href="index.html"><br> <img class="logo logo-light lazy" src="/static/imghwm/default1.png" data-src="assets/img/logo-light.png" alt="Design and Code Your First Website in 9 Easy-to-Understand Steps"><br> <img class="logo logo-dark lazy" src="/static/imghwm/default1.png" data-src="assets/img/logo-dark.png" alt="Design and Code Your First Website in 9 Easy-to-Understand Steps"><br> </a><br>
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 Design and Code Your First Website in 9 Easy-to-Understand Steps folder. Then open the contact-form.php file in Sublime Text.
In this file, you’ll see the following line of code:
<div class="col-sm-4"><a href="assets/cv/my-resume.docx" download class="btn btn-primary btn-filled btn-block">Download CV</a></div><br>
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.

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 Design and Code Your First Website in 9 Easy-to-Understand Steps 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.

Under 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 Design and Code Your First Website in 9 Easy-to-Understand Steps. Here are just a few options you could try that are found on Envato Elements.
1. Aster: Creative Portfolio & Agency HTML Template

If you don’t know too much coding for web design, Aster will still let you create a stunning website. This HTML template is a great example of web design coding. It 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 pages. The code is clean and commented, making Aster one of the easiest ways to code a website.
2. AppStorm: App Startup Template

Learning coding for web design? 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 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. This is a good web design coding example to start your website.
4. Erika: Portfolio, CV and Resume HTML 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. Start coding for web design using this template!
5. Emily: Personal Blog HTML Template

Give your content the 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.
The above is the detailed content of Design and Code Your First Website in 9 Easy-to-Understand Steps. For more information, please follow other related articles on the PHP Chinese website!

With Astro, we can generate most of our site during our build, but have a small bit of server-side code that can handle search functionality using something like Fuse.js. In this demo, we’ll use Fuse to search through a set of personal “bookmarks” th

I wanted to implement a notification message in one of my projects, similar to what you’d see in Google Docs while a document is saving. In other words, a

Some months ago I was on Hacker News (as one does) and I ran across a (now deleted) article about not using if statements. If you’re new to this idea (like I

Since the early days of science fiction, we have fantasized about machines that talk to us. Today it is commonplace. Even so, the technology for making

I remember when Gutenberg was released into core, because I was at WordCamp US that day. A number of months have gone by now, so I imagine more and more of us

The idea behind most of web applications is to fetch data from the database and present it to the user in the best possible way. When we deal with data there

Let's do a little step-by-step of a situation where you can't quite do what seems to make sense, but you can still get it done with CSS trickery. In this

You can make a garden variety anchor link () open up a new email. Let's take a little journey into this feature. It's pretty easy to use, but as with anything


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor