Skip to content

Instantly share code, notes, and snippets.

View Abhishek950650's full-sized avatar
🎯
Developer

Abhishek Kumar Abhishek950650

🎯
Developer
View GitHub Profile
@Abhishek950650
Abhishek950650 / app.component.html
Created April 25, 2024 17:08
html and ts file of time calculation
<div>
<h1>Time Duration Calculation</h1>
<table style="width: 30%">
<tr>
<th>Start Time</th>
<th>End Time</th>
</tr>
<tr>
<td><input type="time" name="start" (change)="starttime($event)" /></td>
.bg-transparent {
background-color: transparent;
}
:host {
height: 100%;
}
.photo {
object-fit: contain;
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import {HttpClientModule} from '@angular/common/http';
import { AppComponent } from './app.component';
import {FormsModule} from '@angular/forms';
import {SocialLoginModule, SocialAuthServiceConfig } from 'angularx-social-login';
import {GoogleLoginProvider} from 'angularx-social-login';
import { LoginComponent } from './login/login.component'
@NgModule({