Is it possible to create a blog only with html?

I want to create a blog only with HTML, that is, without a database, without PHP, just with HTML. Is it possible to do this?

It may be weird, but I just want to create a very simple blog that requires only two functions:

  • Create new post
  • Comment

It will be hosted on Azure Blob, so there is no PHP, no database.

Thanks.

+4
source share
3 answers

Sure. People did this in 1996 all the time.

Create a new message:

  • Open the .html blog in notepad.
  • The code for the new blog post is higher than the last
  • Save blog.html, download.

A comment:

  • "Woah, this blog is epic."
+3
source

Well, I think this is not a good idea, but if you need to do this, you will have to do a little manual work.

You will

  • Create blog entries manually using any HTML editor and manually upload updated HTML pages to the server.
  • For comments, you can create a "send by email" form (http://www.tizag.com/htmlT/forms.php) and receive comments by email. After comments from user comments, you can show a message stating that the comment was sent for moderation.
  • After you receive a comment by email, you will have to manually update it in HTML.

Javascript or jQuery can be used for some process improvements. Hope this works. :)

+1
source

Not.

How do you save messages? Only server-side scripts will make this possible.

0
source

Source: https://habr.com/ru/post/1394962/


All Articles