40 lines
979 B
HTML
40 lines
979 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hero Block with Image</title>
|
|
<meta name="description" content="A hero block with a background image and a tinted overlay.">
|
|
|
|
<link rel="preload" href="assets/img/business.jpg" as="image">
|
|
|
|
<link rel="stylesheet" href="assets/css/hero-image.css">
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
<!-- hero block -->
|
|
<header class="hero-block text-center">
|
|
|
|
<div class="hero-text-container">
|
|
<h1 class="slide-in-top">Aurelien Rebourg</h1>
|
|
<h2 class="slide-in-left">Web Developement learner</h2>
|
|
</div>
|
|
|
|
<div class="hero-bg-media">
|
|
<img src="assets/img/business.jpg" alt="sample background image">
|
|
</div>
|
|
|
|
<div class="bg-overlay"></div>
|
|
|
|
</header>
|
|
<!-- /hero block -->
|
|
|
|
|
|
|
|
</body>
|
|
</html> |