Vayas 0 Posted November 24, 2014 Report Share Posted November 24, 2014 (edited) Hello W3schools community. My name is manuel and i'm the owner of http://webguidesetup.com/ There i created a guide for the basic installation of WordPress and i hope someone could give me feedback. Link: http://webguidesetup.com/books/wordpress/index.html Thanks and best regards, manuel. Edited February 27, 2015 by Vayas Quote Link to post Share on other sites
niche 135 Posted November 24, 2014 Report Share Posted November 24, 2014 I liked what I saw. Is there something specific you need us to see? Quote Link to post Share on other sites
Ingolme 1,020 Posted November 24, 2014 Report Share Posted November 24, 2014 Are you getting paid to advertise for these companies? Somebody in the advertising industry such as yourself should be aware that advertising and marketing is never free. This forum's main focus is helping people learn and teaching people how to solve their development problems. Since you're asking for a critique, though I'm not sure if you truly wanted it: To begin, you could fix the validation errors on your pages: http://validator.w3.org/check?uri=http%3A%2F%2Fwebguidesetup.com%2Fbooks%2Fwordpress%2Findex.html&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.3+http%3A%2F%2Fvalidator.w3.org%2Fservices Most of the errors come from using a <p> element to wrap something that is not a paragraph. You could use <div>, <article>, <section> or other more semantically appropriate elements. Here's something in your code that is valid HTML syntax but incorrect: <br/><h3>What you learn:</h3><br/><p>1. Find and buy webspace and your domain.<br/>2. Download the current WordPress version.<br/>3. Create a database for WordPress.<br/>4. Install the WordPress blog.<br/>5. Customization of your blog.<br/>6. Buy and install a template. <br/>7. Customization of your template. <br/>8. Install plugins and my favorite plugins.<br/>9. Search engine optimization.<br/>10. Earn money with your blog. <br/></p> Once again, a <p> element is around something that is not a paragraph. This is an ordered list, you should use the <ol> element to represent it. The use of <br> tags is also a bad idea. Block elements automatically have a line break before and after them. If what you want is vertical space, use margin or padding in your CSS. Quote Link to post Share on other sites
Vayas 0 Posted December 2, 2014 Author Report Share Posted December 2, 2014 (edited) Thank you "Foxy Mod" for your nice Feedback. I'm only here for feedback. If you want you can check my newsletter page: http://webguidesetup.com/ best regards, Manuel. Edited February 12, 2015 by Vayas Quote Link to post Share on other sites
Vayas 0 Posted February 12, 2015 Author Report Share Posted February 12, 2015 (edited) We published a new and better version. Check: http://webguidesetup.com/ Edited February 27, 2015 by Vayas Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.