JSFiddle - React, Tailwind, and code Playground

by serio

HTML

<div id='RIP'></div>

CSS

#RIP
{
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    
    font-size: 200%;
}

#RIP div
{
    margin-bottom: 20px;   
}

#RIP img
{
    height: 300px;   
}

#RIP a
{
    background: #26445F;
    font-size: 18px;
    padding: 8px;
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#RIP a:hover
{
    text-decoration: underline;
    background: #0C131C;
}

JavaScript

$(function() {
    var creations = [
        'Apple',
        'Microsoft',
        'Facebook',
        'Twitter',
        'Google',
        'Yahoo',
        'Internet',
        'Dell',
        'Amazon'
        ];

    var names = [
        'Steve Jobs',
        'Bill Gates',
        'Steve Balmer',
        'Forest Whitaker',
        'Mark Zuckerberg',
        'Steven Spielberg',
        'Buzz Aldrin',
        'George Bush',
        'Barack Obama',
        'Al Gore'
        ];

    var moguls = [

        'http://images.apple.com/ca/home/images/t_hero.png',
        'http://www.freeinfosociety.com/media/images/1019.jpg',
        'http://www.pollsb.com/photos/o/6693-lt_a_href_http_en_wikipedia_org_wiki_steve_ballmer_gt_steve_balmer_lt_a_gt.jpg',
        'http://wearemoviegeeks.com/wp-content/forest-whitaker-battlefield-earth.jpg',
        'http://farm3.static.flickr.com/2291/1609042607_5c35fc57d1.jpg',
        'http://3.bp.blogspot.com/_nm9ySucveA8/TEYgGF9iEWI/AAAAAAAAAOo/uC62nczWcEk/s1600/unicorn1.jpg',
        'http://top-people.starmedia.com/tmp/swotti/cacheYMFYYWNRIG9IYW1HUGVVCGXLLVBLB3BSZQ==/imgbarack%20obama1.jpg',
        'http://topnews.in/light/files/Steven-Spielberg3.jpg',
        'http://pacuriosos.com/blog/wp-content/uploads/2010/08/george-bush-460_1011810c.jpg',
        'http://thumb1.mixcloud.com/w/300/h/300/q/85/upload/images/profile/eafcd0d1-bf0d-4439-9438-f5e40ab6f9b8.jpg',
        'http://manhattaninfidel.com/__oneclick_uploads/2011/06/dos-equis-guy-gives-advice.jpg',
        'http://images.wikia.com/muppet/images/7/79/Rowlf2.jpg',
        'http://fastcache.gawkerassets.com/assets/images/8/2009/12/al-gore.jpg',
        'http://www.picgifs.com/celebrities/l/lionel-richie/celebrities-lionel-richie-215010.jpg'
        ];

    var rand_year = Math.floor(Math.random() * (1980 - 1940 + 1)) + 1940;
    var rand_creation = creations[Math.floor(Math.random() * creations.length)];

    var html = '<div style="font-size:60px">RIP</div><div>' +...