0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Web制作時のコピペ用テンプレート

Posted at

Web制作時のコピペ用テンプレ置き場として。
随時更新。

基本マークアップ

sample.html
<!DOCTYPE html>
<html lang="jp">
<html>
<head>
<meta charset="UTF-8">
<title>〇〇へようこそ!</title>
<link rel="stylesheet" href="style.css">
<style></style>
</head>
<body>

</body>
</html>

ラベル

label.html
<h1>こんにちは</h1>
style.css
h1{ 
	position: relative;
	padding: 1em;
	background: pink;
}
h1::before{
	position: absolute;
	content: 'Label';
	top: 0;
	left: 0;
	font-size: 0.5em;
	color: white;
	padding: 0.2em;
	background: black;
}

image.png

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?