mirror of
https://github.com/TheTaz25/denis.ergin.git
synced 2025-07-07 06:08:53 +00:00
chore: minor changes, add robots to exclude slides and tasks
This commit is contained in:
parent
78f116219f
commit
be196209ef
4 changed files with 24 additions and 3 deletions
3
public/robots.txt
Normal file
3
public/robots.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
User-agent: *
|
||||||
|
|
||||||
|
Disallow: /slides/*
|
|
@ -1,6 +1,7 @@
|
||||||
---
|
---
|
||||||
import Link from '../components/atoms/Link.astro';
|
import Link from '../components/atoms/Link.astro';
|
||||||
import { getLangFromUrl, useTranslations } from '../i18n/utils';
|
import { getLangFromUrl, useTranslations } from '../i18n/utils';
|
||||||
|
import '../styles/global.css'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
title: string;
|
title: string;
|
||||||
|
|
|
@ -5,13 +5,30 @@ import Layout from "../../layouts/Layout.astro";
|
||||||
<Layout title="HTML Aufgabe 1">
|
<Layout title="HTML Aufgabe 1">
|
||||||
<h1>Aufgabe #1 zu HTML</h1>
|
<h1>Aufgabe #1 zu HTML</h1>
|
||||||
<p>
|
<p>
|
||||||
Mit den bisher erlernten Inhalten sollte es möglich sein eine erste kleine HTML-Seite aufzubauen. Als Zielsetzung: versucht euch selber in dieser ersten HTML-Seite zu präsentieren.
|
Mit den bisher erlernten Inhalten sollte es möglich sein eine erste kleine HTML-Seite aufzubauen.
|
||||||
<br>
|
<br>
|
||||||
Die Form ist euch überlassen:
|
Die Art ist euch überlassen:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Ein Lebenslauf</li>
|
<li>Ein Lebenslauf</li>
|
||||||
<li>Einen Blogeintrag über euch</li>
|
<li>Einen Blogeintrag über euch</li>
|
||||||
<li>Eure eigene kreative Idee</li>
|
<li>Eure eigene kreative Idee</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
</Layout>
|
<h2>
|
||||||
|
Tipps & Tricks
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
Sobald ihr eure ersten Zeilen HTML geschrieben habt, könnt ihr euch mal folgendes ansehen:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://docs.emmet.io/" target="_blank" rel="noopener noreferrer">Emmet</a>
|
||||||
|
<ul>
|
||||||
|
<li>Integraler Bestandteil von VSCode und weiteren Editoren</li>
|
||||||
|
<li>Hilft euch schneller ein HTML-Grundgerüst aufzubauen</li>
|
||||||
|
<li>Einfach mal ausprobieren: <code>html</code> in ein leeres HTML-Dokument schreiben und auf Enter drücken!</li>
|
||||||
|
<li><code>ul>li*5</code> eintippen und das Resultat anschauen!</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</Layout>
|
||||||
|
|
0
src/styles/global.css
Normal file
0
src/styles/global.css
Normal file
Loading…
Add table
Add a link
Reference in a new issue