トレーニング-(4)ロゴinヘッド
Logo in Header
😎 html
htmlコード
<h1>
<a href="./LogoInHeader.html"><img src="https://statics.goorm.io/logo/edu/goorm_edu.svg" alt="Goorm Edu" /></a>
</h1>
<a href="https://edu.goorm.io/qna">Q&A</a>
結果画面
😎 css
css付きコード
LogoInHeader.html<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logo in Header</title>
</head>
<body>
<div class="header">
<h1>
<a href="./LogoInHeader.html"><img src="https://statics.goorm.io/logo/edu/goorm_edu.svg" alt="Goorm Edu" /></a>
</h1>
<a href="https://edu.goorm.io/qna">Q&A</a>
</div>
</body>
</html>
styles.css@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap');
* {
margin: 0;
box-sizing: border-box;
}
html {
font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 16px;
line-height: 1.5;
color: #1f2d3d;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
margin: 0 auto;
background-color: #1f2d3d;
}
body::after {
content: 'frenchkebab©';
display: block;
margin-top: 50px;
color: #fff;
font-size: 12px;
font-weight: 600;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
padding: 12px 56px;
border-radius: 3px;
background-color: #fff;
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}
.header h1 {
position: relative;
top: 1px;
}
.header h1 img {
display: block;
width: auto;
height: 30px;
}
.header a {
display: block;
text-decoration: none;
font-size: 0.875rem;
color: #313338;
}
.header a:hover {
opacity: 0.5;
}
.header a:visited {
color: inherit;
}
結果画面
😎 知っているところ
画像自体にテキストが含まれている場合?
再びtextを入れてcssで隠すよりも、alt値で対応するtextを直接入れればいい!
Reference
この問題について(トレーニング-(4)ロゴinヘッド), 我々は、より多くの情報をここで見つけました
https://velog.io/@frenchkebab/html-훈련-4-Logo-in-Header
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
<h1>
<a href="./LogoInHeader.html"><img src="https://statics.goorm.io/logo/edu/goorm_edu.svg" alt="Goorm Edu" /></a>
</h1>
<a href="https://edu.goorm.io/qna">Q&A</a>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logo in Header</title>
</head>
<body>
<div class="header">
<h1>
<a href="./LogoInHeader.html"><img src="https://statics.goorm.io/logo/edu/goorm_edu.svg" alt="Goorm Edu" /></a>
</h1>
<a href="https://edu.goorm.io/qna">Q&A</a>
</div>
</body>
</html>
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap');
* {
margin: 0;
box-sizing: border-box;
}
html {
font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 16px;
line-height: 1.5;
color: #1f2d3d;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
margin: 0 auto;
background-color: #1f2d3d;
}
body::after {
content: 'frenchkebab©';
display: block;
margin-top: 50px;
color: #fff;
font-size: 12px;
font-weight: 600;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
padding: 12px 56px;
border-radius: 3px;
background-color: #fff;
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}
.header h1 {
position: relative;
top: 1px;
}
.header h1 img {
display: block;
width: auto;
height: 30px;
}
.header a {
display: block;
text-decoration: none;
font-size: 0.875rem;
color: #313338;
}
.header a:hover {
opacity: 0.5;
}
.header a:visited {
color: inherit;
}
Reference
この問題について(トレーニング-(4)ロゴinヘッド), 我々は、より多くの情報をここで見つけました https://velog.io/@frenchkebab/html-훈련-4-Logo-in-Headerテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol