10 Tips for Properly Designing Web Pages to Improve Readability of Website Content

A well-designed web page will allow readers to quickly read the site's articles and read other content with interest, and if the design is so different and personal that readers can't quickly find the topic they want to get to, they will quickly leave your site. So how do you design a web page? A few small details and some operating habits will make your website content more readable.

1: Make the article content font larger

Words that are too small look tired, especially when there is a lot of content. The popular fonts for article content are 14px (pixels), and 180% or 150% line spacing, which is less likely to cause visual fatigue.

For example, the following code can be added to a CSS file: body{font-family: "Song", "Microsoft YaHei", "arial",Verdana, sans-serif; font-size: 14px;line-height: 180%;} This code means that the BODY area is also called The entire page defaults to Song, if not Song then Microsoft Yahei, and so on. font-size means font size, line-height means line spacing. (I'm very sorry, I made a serious mistake, the current popular font should be 14px, the results I played into 16px, here to say sorry to all of you to change into 16px friends.)

2: Add an underscore to the link to the article content

This allows the reader to know exactly where to click. For example: show underline code text-decoration: underline;

3: Article content is as clear and concise as possible

And don't make your essay a garish font color.

4: Be diligent in dividing paragraphs.

Too many paragraphs than too few paragraphs are much better, so that the article looks staggered, and the reader is also easy to read.

5: Abstract is very important

This way the reader can read the headline and then read the summary to get a general idea of what the article is trying to say.

6: Give key sentences or paragraphs a bold reality

This is not only easy to read quickly, but search engines will also focus on reading.

7: If the article is very long, you can use pagination.

Page navigation must be clear and easy to click.

8: the article to keep in a reasonable width

Try not to paste directly from the word document into the article editor. To avoid pasting the style code into the editor as well. I generally use Notepad to write articles.

9: Consider using illustrations. If there is too much text in the article, illustrations can improve the readability of the article.

You can take a look at the illustrations for blog posts on Lu Song Song's blog.

10: The last and the most important point

The site must have clear navigation and be easy for the reader to navigate. I've been to a few very personal blogs, but close to 30 seconds were spent looking for where to click into the article content. This is a very different design, but very unreasonable.

Leave a Reply

Your email address will not be published. Required fields are marked *