Skip to content

Instantly share code, notes, and snippets.

View Cbazil's full-sized avatar
🏠
I may be slow to respond.

Chad Bazil Bosch Cbazil

🏠
I may be slow to respond.
View GitHub Profile
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intro to HTML Demo</title>
</head>
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intro to HTML Demo</title>
</head>
<body>
<header>
<nav>
@Cbazil
Cbazil / script.js
Created November 29, 2020 13:46
Our Vue Instance
new Vue({
el: "#vue-app",
data: {
names: ["Joe", "John", "Jane", "Mia", "Jennifer"],
rugbyRanks: [
{ team: "South Africa", position: 1, points: "94.19" },
{ team: "New Zealand", position: 2, points: "92.11" },
{ team: "England", position: 3, points: "88.82" },
{ team: "Wales", position: 4, points: "85.02" },
{ team: "Ireland", position: 5, points: "84.45" }