+ 4
My first Website: Question
So, I'm wanting to attempt to use everything I've learned so far from SoloLearn & create my own website. (Wanting to make a daily blog-style site for now) or at least have a section dedicated to it. My question for you all is: Can anyone link me to a website 'outline' or something? Since I'm going to be coding this from scratch. One of the tips I read from a fellow coder was to plan ahead with your div/class IDs, sections, etc, etc. So I'm trying to get my ducks in order before I attempt this project. ~Thank you in advance to anyone who provides any sort of feedback trying to help. 🙏✨
2 Réponses
+ 4
If i read that right. You want a template for a blog style site?
Planning ahead for div's, classes, or id's isn't necessary--get your basic structure right visualize how you want it to be then code and change as necessary.
Lookup the source code of the site you like. If it's going to be a static blog with minimal to no js than the basic structure of a blog post can be something like below
<html><body>
<h1>blog post no.2</h1>
<h3>Why write a blog?</h3>
<p> para starts here</p>
<p> next para</p>
</body></html>
Check the source code of the following and other blogs search the internet for more
view-source:https://zellwk.com/blog/
This one has a list of responsive sites, see if the sites in the blogs section are any good
https://mayvendev.com/blog/25-awesome-responsive-blog-designs
Good Luck!🍀
+ 3
Thanks for the response Lord Krishna . I'll do a bit of page inspecting I spose.