-
CSS Introduction -
CSS Syntax -
CSS Id & Class -
CSS Styling -
Styling Backgrounds -
Styling Text -
Styling Fonts -
Styling Links -
Styling Lists - Styling Tables
HTML Elements
Syllabus Covered (HTML)
-
Introduction of different Web Technology -
Introduction -
HTML Elements -
HTML Attributes -
HTML Headings - HTML Paragraphs
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
| importScripts('https://www.gstatic.com/firebasejs/4.2.0/firebase.js'); | |
| // Initialize Firebase | |
| var config = { | |
| apiKey: "AIzaSyAe16AkNjKud_......", | |
| projectId: "fcmtest-11c2f", | |
| messagingSenderId: "32882833521" | |
| }; | |
| firebase.initializeApp(config); | |
| const messaging = firebase.messaging(); |
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
| import { Component, Input } from '@angular/core'; | |
| @Component({ | |
| selector: 'app-child', | |
| templateUrl: './child.component.html', | |
| styleUrls: ['./child.component.css'] | |
| }) | |
| export class ChildComponent implements OnInit { | |
| @Input() parentVal: string; | |
| constructor() { } |