404エラーページを作成する方法
こんにちは、このチュートリアルでは404 Error Page Design HTMLとCSSの使用
共通クエリ 404エラーページを作成する方法 404エラーページを作成する方法 404エラーものすごいページ設計をつくる方法 こんにちは、このチュートリアルの人々は、上記の質問を解決しようとします.また、我々はどのように作成する方法を学びます404 Error ページを使用して
ステップ1
インデックスの内側にコードを追加します.HTML
ステップ2
次に、スタイル用のコードを追加する必要があります.以下の画面で提供するCSSコード.
404エラーページデザインビデオ出力:
共通クエリ
ステップ1
インデックスの内側にコードを追加します.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>404 Error Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="grid-row">
<div class="colmun colmun-left">
<img src="image-left.png" alt="image-left">
<h1 class="px-spc-b-20">We can't find the page you are looking for.</h1>
<span class="px-spc-b-20">This page has been relocated or removed.</span>
<button class="go-home"><i class="fa fa-home"></i> Go Home</button>
</div>
<div class="colmun colmun-right">
<img src="right-shape.png" alt="right-shape">
</div>
</div>
</div>
</div>
</body>
</html>
ステップ2
次に、スタイル用のコードを追加する必要があります.以下の画面で提供するCSSコード.
* {
padding: 0;
margin: 0;
outline: 0;
color: #444;
box-sizing: border-box;
font-family: 'IBM Plex Sans', sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
h1 {
font-size: 50px;
line-height: 60px;
}
span {
display: block;
font-size: 18px;
line-height: 30px;
}
.container {
width: 80%;
max-width: 1600px;
margin: auto;
}
.grid-row {
display: grid;
grid-template-columns: 1fr 1fr;
place-items: center;
grid-gap: 50px;
}
.colmun-left {
text-align: left;
}
.colmun-right {
text-align: right;
}
.px-spc-b-20 {
padding-bottom: 20px;
}
button.go-home {
padding: 5px 20px;
background: #ffa000;
border: transparent;
border-radius: 2px;
box-shadow: 0 0 2px rgb(0 0 0 / 30%);
cursor: pointer;
margin: 20px 0;
color: #fff;
}
button.go-home i {
color: #fff;
}
img {
display: block;
width: 100%;
}
404エラーページデザインビデオ出力:
Reference
この問題について(404エラーページを作成する方法), 我々は、より多くの情報をここで見つけました https://dev.to/stackfindover/how-to-create-a-404-error-page-in-html-52o4テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol