font hinzugefügt

Einladungstext und Kontakt hinzugefügt
This commit is contained in:
HuskyTeufel
2022-01-14 09:48:50 +01:00
parent 708679c619
commit 8acd4b7bb4
18 changed files with 214 additions and 14 deletions

View File

@@ -0,0 +1,30 @@
<h3>Unser Fest</h3>
<p>
Wir heiraten am 20.08.2022<br />
und würden uns freuen,<br />
wenn Ihr diesen besonderen Tag<br />
mit uns feiern würdet.
</p>
<p>
Wir werden gemeinsam in<br />
Landgasthof Dockemeyer<br />
Hauptstraße 433<br />
26683 Ramsloh<br />
um 19 Uhr auf diesen Tag anstoßen.<br />
<a href="#">Wegbeschreibung</a>
</p>
<p>
Die Standesamtliche Trauung<br />
findet um 13 Uhr in der<br />Mühle Scharrel statt.<br />
<a href="#">Wegbeschreibung</a>
</p>
<p>
Bitte lasst uns bis zum <br /><b>20.06.2022</b><br /> wissen, ob wir Euch als unsere Gäste<br /> empfangen dürfen<br /><a href="#">Kontaktmöglichkeiten</a>
</p>
<br />
<p>Wir freuen uns auf Euch</p>

View File

@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LocationComponent } from './location.component';
describe('LocationComponent', () => {
let component: LocationComponent;
let fixture: ComponentFixture<LocationComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ LocationComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(LocationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-location',
templateUrl: './location.component.html',
styleUrls: ['./location.component.css']
})
export class LocationComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}