1
1

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.

Markdown記法のキ(第7回/全8回)

Last updated at Posted at 2015-04-09

Qiita に記事を投稿するにあたって必要な Markdown 記法についてドットインストールの授業で学習したので、忘備録として記事を投稿します。


第7回 画像を入れてみよう

前回は リンクの書き方についての記事を投稿しましたが、今回は画像を入れる(img タグ) Markdown記法について書いていきます。

画像
記法
![alt属性](ファイルパス)

![ケーキ](food.jpg)

別ファイルで保存し、画像を同じ階層に配置してから実行して下さい。
(今回使用した画像↓)
food.jpg

ブラウザで要素を確認


\

外部参照でも書ける

![ケーキ][1]

[1]: food.jpg

リンク付き画像

[![ケーキ](food.jpg)](http://google.com)

画像自体がリンクの中の要素なので、[]で囲む
[画像要素](http://google.com "T")

ブラウザで要素を確認


\<\img src="///C:/food.jpg" alt="ケーキ" style="max-width:100%;">\

次回へ続く

"Markdown記法のキ(第6回/全8回)

"Markdown記法のキ(第8回/全8回)

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?