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
| var works = [ | |
| { | |
| title: "First Project", | |
| pic: "img/bat1.png" | |
| }, | |
| { | |
| title: "Second Project", | |
| pic: "img/bat2.png" | |
| }, | |
| { |
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
| //Map | |
| var map; | |
| function initMap() { | |
| map = new google.maps.Map(document.getElementById('map'), { | |
| center: {lat: 26.7682553, lng: -80.2541773}, | |
| zoom: 10 | |
| }); | |
| var myLatLng = {lat: 26.7682553, lng: -80.2541773}; |
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
| * { box-sizing: border-box; } | |
| .contain { | |
| width: 80%; | |
| margin: 0 auto; | |
| } | |
| .header h1 { | |
| text-align: center; | |
| margin-bottom: 40px; |
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
| <!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"> | |
| <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
| <title>Student Concept</title> |
NewerOlder