DEV Community

Discussion on: How to make fully responsive modern portfolio using pure HTML, CSS and JS.

Collapse
 
abhinav1217 profile image
Abhinav Kulshreshtha

Good post. Nice explanation of core fundamentals. You can reduce your code a little if you write styles on html tags directly where possible. Like on <footer class="footer"> you can write styles directly on footer tag instead of giving it a class. But its a personal choice. I appreciate your post for focusing on proper basic concepts instead of some half baked tutorial on framework.

Collapse
 
httpjunkie profile image
Eric Bishard

Yep, I def like having the frame of my layout created with all semantic tags and targeting then with css without using classes but tag name, footer, nav, header, aside, etc..