diff --git a/index.html b/index.html index bd08961..726a705 100644 --- a/index.html +++ b/index.html @@ -7,25 +7,29 @@ -
const aboutMe = {
- name: 'Luke Else',
- title: 'Software Engineer + Student',
- }
+
+ Person me = new Person
+ {
+ Name = "Luke Else",
+ Age = 18,
+ Title = "Software Engineer / Student",
+
+
+ }
this.addEventListener('mouseover', () => {
- this.flipCard = true;});
+ internal class Person
+ { //Hover to flip
+ public string Name { get; set; }
+ internal int Age { get; set; }
+ internal string Title { get; set; }
+ public string EMail { get; set; }
+ public string Website { get; set; }
+ }
+