Title

pageId = 2097156 | Source

Hello World

Korean

여보세요 세계

Japanese

こんにちは世界

Chinese

你好世界


Emoticon (smile)

Emoticon (sad)

  • ONE day a shameless and impudent wight (tongue)
  • Went into a shop full of steel wares bright, (big grin)
  • Arranged with art upon ev'ry shelf.
  • He fancied they were all meant for himself;
  • And so, while the patient owner stood by,
  • The shining goods needs must handle and try,
  • And valued,--for how should a fool better know?--
  • The bad things high, and the good ones low,
  • And all with an easy self-satisfied face
  • Then, having bought nothing, he left the place.


Image

Linked images

 

Attached

Attached images

 

Attached image with unicode filename

Background image

Background image with remote location

Background image with unicode filename

Fragments

Text - HTML

  • <p>하하 이것은 첫번째 </p>
  • <p>이것은 두번째</p>
  • <p>이것은 세번째지. 하하.</p>


Text - List

  • 하나

Text - paragraph

하나

Image - horizontal

 

Image - vertical

 

Code

HTML





Web Fundamentals


Javascript

var express = require('express')
var app = express()

app.get('/', function (req, res) {
  res.send('Hello World!')
})

app.listen(3000, function () {
  console.log('Example app listening on port 3000!')
})


Bash

#!/bin/bash
read -p "Enter disk space must be usage: " disk;
usage=`df -h | awk '{print $5}' | sed -e N -e 's/\n//' | awk '{print $2}' | tr -d % -s "\n"`
devnm=`df -h | awk '{print $1}' | sed -e N -e 's/\n//' | awk '{print $2}' | tr -s "\n"`
str="============================="
if [ $usage -ge $disk ]; then
info="Disk usage for $devnm is more than $disk , Current Disk usage is $usage % "
echo -e "$str\n$info\n$str" |mail -s "Alert: Disk Usage for `hostname` on `date`" admin@example.com
else
info="Disk Usage is $usage% for $devnm"
# echo -e "$str\n$info\n$str" | mail -s "Alert: Disk Usage for `hostname` on `date`" admin@example.com
fi

Multiple code blocks

var express = require('express')
var app = express()
#!/bin/bash
echo "haha"