Creating a blog structure with HTML

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kitgudkov
    New Member
    • Oct 2015
    • 1

    Creating a blog structure with HTML

    Hi guys,

    What if I want to create my own blog without using any platform like Wordpress?
    I mean, how to take care of posts - are they gonna be separate pages linked or partly embedded to the main page? What is a good practice of adding new posts to the home-made blog?

    Thanks, Nik
  • Toxicous8
    New Member
    • Oct 2015
    • 57

    #2
    Well, I recommend u to use php, perl, mysql and cgi on this one dude.U could use the GET|POST form methods in php.But u need to have some knowledge or exp. of html before starting php.U can dwnld the pdf files from Tutorialspoint. com for these languages.And u need to dwnld a php server (I use XAMPP),install it correctly and follow the main instructions.Wi sh you luck ;)

    Comment

    • Toxicous8
      New Member
      • Oct 2015
      • 57

      #3
      Or go to


      https://daveismyname.com/creating-a-...ch-with-php-bp. Wow this post is old right just saw it accidentally. Good luck again.

      Comment

      • paulnevinthomas
        New Member
        • Feb 2016
        • 3

        #4
        creating a blog structure with html

        Now, let’s transform the visual concept into a working HTML/CSS prototype web page before finishing everything up as a complete theme next week. We’ll build the page structure with clean HTML, then style up as much as possible using CSS styling to create a lean website design that still replicates the original concept.

        Code:
        <div class="post">
        	<h2><a href="#">Captain America Kicks Ass!</a></h2>
        	
        	<a href="#" class="post-thumbnail"><img src="https://bytes.com/images/temp-post-thumbnail1.png" alt="Read the full post" /></a>
        	
        	<p>Lorizzle ipsum dolor sizzle ghetto, consectetuer fizzle elit. Sheezy doggy velizzle, i saw beyonces tizzles and my pizzle went crizzle volutpizzle, suscipit cool, own yo' vizzle, arcu. Pellentesque eget phat. My shizz erizzle. For sure izzle dolizzle for sure turpis tempizzle sizzle. Maurizzle i saw beyonces tizzles and my pizzle went crizzle nibh et turpizzle. Bizzle izzle i saw beyonces tizzles and my pizzle went crizzle. Pellentesque eleifend pot nisi. In hac habitasse platea dictumst. Pimpin' dapibizzle. Cool tellus owned, pretizzle eu, mattis uhuh ... yih!, eleifend dang, nunc. Ma nizzle suscipizzle. Integizzle shizzlin dizzle away sizzle purus. Mammasay mammasa mamma oo sa at dope. Yo mamma erizzle. condimentizzle, turpizzle nizzle congue consectetuer, brizzle libero bling bling fizzle, sizzle ullamcorper sure for sure nizzle sizzle. </p> 
        	
        	
        	<div class="post-info">
        		<ul>
        			<li class="date">18th August 2011</li>
        			<li class="category">Posted in <a href="#">Reviews</a></li>
        			<li class="read-more"><a href="#">Read more</a></li>
        		</ul>
        	</div>
        	
        </div>
        Last edited by gits; Feb 18 '16, 12:45 PM. Reason: added code tags

        Comment

        • Sherin
          New Member
          • Jan 2020
          • 77

          #5
          Code:
          <!DOCTYPE html>
          <html>
          <head>
          <meta name="viewport" content="width=device-width, initial-scale=1">
          </head>
          <body>
          
          <div class="header">
            <h2>Blog Name</h2>
          </div>
          
          <div class="row">
            <div class="leftcolumn">
              <div class="card">
                <h2>TITLE HEADING</h2>
                <h5>Title description, Dec 7, 2017</h5>
                <div class="fakeimg" style="height:200px;">Image</div>
                <p>Some text..</p>
                <p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
              </div>
              <div class="card">
                <h2>TITLE HEADING</h2>
                <h5>Title description, Sep 2, 2017</h5>
                <div class="fakeimg" style="height:200px;">Image</div>
                <p>Some text..</p>
                <p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
              </div>
            </div>
            <div class="rightcolumn">
              <div class="card">
                <h2>About Me</h2>
                <div class="fakeimg" style="height:100px;">Image</div>
                <p>Some text about me in culpa qui officia deserunt mollit anim..</p>
              </div>
              <div class="card">
                <h3>Popular Post</h3>
                <div class="fakeimg">Image</div><br>
                <div class="fakeimg">Image</div><br>
                <div class="fakeimg">Image</div>
              </div>
              <div class="card">
                <h3>Follow Me</h3>
                <p>Some text..</p>
              </div>
            </div>
          </div>
          
          <div class="footer">
            <h2>Footer</h2>
          </div>
          
          </body>
          </html>

          Comment

          Working...