Skip to content

Instantly share code, notes, and snippets.

@verlok
Created November 19, 2018 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save verlok/459189320494ed8837df74b2bfd3b458 to your computer and use it in GitHub Desktop.
Save verlok/459189320494ed8837df74b2bfd3b458 to your computer and use it in GitHub Desktop.
Empty HTML file to start from scratch
<html lang="en">
<head>
<meta charset="utf-8">
<title>________________</title>
<meta name="description" content="________________">
<meta name="author" content="________________">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Titolo</h1>
<p>Lorem ipsum...</p>
<script src="main.js"></script>
</body>
</html>
@niryaffe
Copy link

<title>Nir Yaffe - High Tech Teacher</title> <style> body { font-family: Arial, sans-serif; background-color: #f0f8ff; /* Light Blue */ color: #000080; /* Navy Blue */ margin: 0; padding: 0; box-sizing: border-box; }
    header {
        background-color: #000080; /* Navy Blue */
        color: #f0f8ff; /* Light Blue */
        text-align: center;
        padding: 1em;
    }

    section {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background-color: #ffffff; /* White */
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    footer {
        text-align: center;
        padding: 1em;
        background-color: #000080; /* Navy Blue */
        color: #f0f8ff; /* Light Blue */
    }
</style>

Nir Yaffe

High Tech Teacher

<section>
    <h2>About Me</h2>
    <p>Welcome to my personal homepage! I'm Nir Yaffe, a high-tech teacher passionate about educating and inspiring others in the world of technology.</p>

    <h2>Skills</h2>
    <p>I specialize in high-tech education, utilizing innovative teaching methods to make complex concepts accessible and engaging for students.</p>

    <h2>Contact Information</h2>
    <p>Feel free to reach out to me:</p>
    <p>Email: your.email@example.com</p>

    <h2>Projects</h2>
    <p>Currently working on exciting projects to enhance the learning experience for my students. Stay tuned for updates!</p>
</section>

<footer>
    <p>© 2024 Nir Yaffe - High Tech Teacher</p>
</footer>

@niryaffe
Copy link

<title>Nir Yaffe - High Tech Teacher</title> <style> body { font-family: Arial, sans-serif; background-color: #f0f8ff; /* Light Blue */ color: #000080; /* Navy Blue */ margin: 0; padding: 0; box-sizing: border-box; }
    header {
        background-color: #000080; /* Navy Blue */
        color: #f0f8ff; /* Light Blue */
        text-align: center;
        padding: 1em;
    }

    section {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background-color: #ffffff; /* White */
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    footer {
        text-align: center;
        padding: 1em;
        background-color: #000080; /* Navy Blue */
        color: #f0f8ff; /* Light Blue */
    }
</style>

Nir Yaffe

High Tech Teacher

<section>
    <h2>About Me</h2>
    <p>Welcome to my personal homepage! I'm Nir Yaffe, a high-tech teacher passionate about educating and inspiring others in the world of technology.</p>

    <h2>Skills</h2>
    <p>I specialize in high-tech education, utilizing innovative teaching methods to make complex concepts accessible and engaging for students.</p>

    <h2>Contact Information</h2>
    <p>Feel free to reach out to me:</p>
    <p>Email: your.email@example.com</p>

    <h2>Projects</h2>
    <p>Currently working on exciting projects to enhance the learning experience for my students. Stay tuned for updates!</p>
</section>

<footer>
    <p>© 2024 Nir Yaffe - High Tech Teacher</p>
</footer>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment