This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const companies = [ | |
{name: "Company One", industry: "Finance", start: 1981, end: 2004}, | |
{name: "Company Two", industry: "Retail", start: 1992, end: 2008}, | |
{name: "Company Three", industry: "Auto", start: 1999, end: 2007}, | |
{name: "Company Four", industry: "Retail", start: 1989, end: 2010}, | |
{name: "Company Five", industry: "Technology", start: 2009, end: 2014}, | |
{name: "Company Six", industry: "Finance", start: 1987, end: 2010}, | |
{name: "Company Seven", industry: "Auto", start: 1986, end: 1996}, | |
{name: "Company Eight", industry: "Technology", start: 2011, end: 2016}, | |
{name: "Company Nine", industry: "Retail", start: 1981, end: 1989} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link rel="preconnect" href="https://fonts.gstatic.com" /> | |
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Poppins&display=swap" rel="stylesheet" /> | |
<style> | |
h1, | |
h2, | |
h3, | |
h4, | |
h5 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const team = [ | |
{ | |
id: 1, | |
name: "Alima Miller", | |
role: "Junior Software Developer" | |
}, | |
{ | |
id: 2, | |
name: "Evelyn Rodgers", | |
role: "Junior Software Developer" |
NewerOlder