90 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>Lukas Heiligenbrunner</title>
 | 
						|
    <!-- Latest compiled and minified CSS -->
 | 
						|
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
 | 
						|
 | 
						|
    <!-- jQuery library -->
 | 
						|
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
 | 
						|
 | 
						|
    <!-- Popper JS -->
 | 
						|
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
 | 
						|
 | 
						|
    <!-- Latest compiled JavaScript -->
 | 
						|
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
 | 
						|
    <!--    <script src="js/bootstrap.min.js"></script>-->
 | 
						|
 | 
						|
    <link rel="stylesheet" href="css/index.css">
 | 
						|
</head>
 | 
						|
<!-- The scrollable area -->
 | 
						|
<body data-spy="scroll" data-target=".navbar" data-offset="50">
 | 
						|
 | 
						|
<nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top justify-content-end">
 | 
						|
    <ul class="navbar-nav">
 | 
						|
        <li class="nav-item">
 | 
						|
            <a class="nav-link" href="#section1">Home</a>
 | 
						|
        </li>
 | 
						|
        <li class="nav-item">
 | 
						|
            <a class="nav-link" href="#section2">About Me</a>
 | 
						|
        </li>
 | 
						|
        <li class="nav-item">
 | 
						|
            <a class="nav-link" href="#section3">Projects</a>
 | 
						|
        </li>
 | 
						|
        <li class="nav-item dropdown">
 | 
						|
            <a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
 | 
						|
                Contact
 | 
						|
            </a>
 | 
						|
            <div class="dropdown-menu">
 | 
						|
                <a class="dropdown-item" href="#section41">Link 1</a>
 | 
						|
                <a class="dropdown-item" href="#section42">Link 2</a>
 | 
						|
            </div>
 | 
						|
        </li>
 | 
						|
    </ul>
 | 
						|
</nav>
 | 
						|
<div id="section1" class="tile">
 | 
						|
    <div class="container">
 | 
						|
        <div>
 | 
						|
            <h5>Hey, my name is</h5>
 | 
						|
            <a id="nameText">Lukas Heiligenbrunner</a>
 | 
						|
            <h2 style="opacity: 0.6">A creative Student</h2>
 | 
						|
            <a style="opacity: 0.6">
 | 
						|
                I'm a software engineer based in Austria who loves to <br>
 | 
						|
                develop code and is always open for new projects.
 | 
						|
            </a>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="section2" class="container bg-warning tile">
 | 
						|
    <h1>Section 2</h1>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
</div>
 | 
						|
<div id="section3" class="container bg-secondary tile">
 | 
						|
    <h1>Section 3</h1>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
</div>
 | 
						|
<div id="section41" class="container bg-danger tile">
 | 
						|
    <h1>Section 4 Submenu 1</h1>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
</div>
 | 
						|
<div id="section42" class="container bg-info tile">
 | 
						|
    <h1>Section 4 Submenu 2</h1>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
    <p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at
 | 
						|
        the navigation bar while scrolling!</p>
 | 
						|
</div>
 | 
						|
 | 
						|
</body>
 | 
						|
</html> |