This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Follower Counts</title> |
This file contains 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
:root { | |
--white: #FFFFFF; | |
--purple: #4D2170; | |
--purple-light: #C18EEA; | |
--purple-medium: #250042; | |
--purple-dark: #18002B; | |
--youtube-red: #FF0000; | |
--twitter-blue: #1DA1F1; | |
--instagram-gradient: linear-gradient( | |
90deg, #F0C900 0%, #EC0916 50%, #993ADE 100% |
This file contains 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
def test(): | |
return "Hello, world" |
This file contains 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
var person = { | |
name: "Luke Peters", | |
location: "Boston, MA", | |
occupation: "Web Developer", | |
profile: "How're you doing?" | |
}; |