Tribute Page for Donald Knuth

Code is a bit sloppy but getting there. Let me know what you think :slight_smile:

Thank you!

Oops just saw the post dedicated for these please ignore.

Hey. Itโ€™s fine. A lot of people create a thread for it as well to receive more feedback, so you did nothing wrong.

As for you tribute page itโ€™s looking fine, not a big fan of the neon-like title, but hey, personal choices. You used bootstrap classes nicely too.

Only thing you should adjust is: when you nest rows (as you did your for bottom-well) itโ€™s always better to nest them inside another col. Otherwise the row will overlap the scrollbar (and create an horizontal scrollbar 'cause the content will be off-screen). Basically it should be like this:

      <div class="col-md-12"> 
        <div class="row">
            <div class="well" id="bottom-well">
                  // Content
            </div>
          </div>  
        </div>

See the difference:

Ah great feedback on nesting the row noyb thank you. I did not know that.

I may change the Neon as well. Wanted to do something different so went a bit too over the top on that haha.

1 Like