Beginners quick guide for developing clean web pages

Search for a command to run...

Such an apt guide for anyone who's starting or thinking of starting HTML!! Keep it up!
Hey! Thanks, Soumya for leaving your valuable feedback. I am glad you liked it ๐
Hey there! Are you feeling stuck in the crowd? Then I've gotta way out! ๐ There is no alternative to hands-on for succeeding as a developer! basic must-knows googling the stuff you don't know that's the most basic thing to know first, as a develo...

Let's make your web app blazing fast!

Hey! I made a TODO web app just for trying out VueJS, with not so cool design. But it's okay for me, as an experiment. This is what I created ๐จโ๐ป Github Repo Create these three files: index.html app.js style.css index.html Things wrapped in {...

The world is developing rapidly with rapid improvements in technology. In this fast-moving world, we the developers also need to tie our shoes tight to focus on running faster! ๐โโ๏ธ๐ฅ Today, I'm talking about the serverless architecture that will he...

What? ๐ค AWS recently released Amplify Admin UI, which enables you to seamlessly create back-end and cloud databases for your next project! Supported for: web, android, iOS Support for Android: Java, Kotlin Support for iOS: SwiftUI Frameworks suppor...

Hey folks! building awesome and pixel-perfect front-end projects have always been a thrilling drive for any web developer. So, here I am to share a successful approach to creating those web pages. ๐โก

The below-given image has two sections and sub-section which are similar and reusable from a structural perspective

It's a lot easier here to map data being fetched from some database having information about the recent posts and projects. Moreover, this approach reduces the time and space spent on writing the code.
for example:
<!-- a clean approach -->
<section>
<article>
<header>
<p>
</p>
</header>
</article>
</section>
<!-- a less human-readable approach -->
<div class="section">
<div class="article">
<div class="header">
<p>
</p>
</div>
</div>
</div>
PS: not against using classes here, it just varies from case-to-case, but using Semantic HTML is always a great way to write your HTML code. ๐
// prefer this
.container {
width: 100%;
height: fit-content;
}
// NOT THIS
.container {
width: 1024px;
height: 100px;
}
Chase symmetry in design, it's really important.
Having a consistent, clean, and minimalistic web page gains more attraction and users over having a web page overpowered with content and animations.
Lastly, having a brand color impacts the feel and look of the web page.
Primary color, a secondary color, and text color.
Keep the above things consistent, have enough whitespace, let the code and design breathe!
Woah, had enough tips for this blog see you in the next post, stay tuned! ๐จโ๐ป Take care, happy coding folks! ๐
Follow me on Twitter@amaancodes๐