• 2 Posts
  • 9 Comments
Joined 9 months ago
cake
Cake day: November 13th, 2025

help-circle








  • It’s hard to say with certainty, maybe I’m just nitpicking or the developer isn’t very experienced, but there are a few things that could hint towards it (for context, I’m a web developer):

    • lack of white-space and newlines
    • inconsistent indentation
    • a missing <!DOCTYPE html> and missing closing tags for the <body> and for a <div> element
    • <meta name="robots" content="index, follow"> but the robots.txt file that’s present does not match with its content
    • <meta itemprop="..." ...>: I have never actually seen this attribute before, apparently this is meant for SEO but I don’t think any modern website uses it
    • overriding styles that are written lines before it like:
      margin: 0 auto;
      margin-top: 60px;
      margin-bottom: 80px;
      
    • using var statements instead of let/const

    That’s what I gathered after skimming through the index.html file.

    Edit: I forgot to point out that the design of https://memdeklaro.org/ looks extremely vibe coded as well.