คือเรารันหน้าเว็บเป็นข้อมูลต่างๆ แต่ไม่รู้ว่าต้องใช้คำสั่งอะไร ถึงจะรันให้มันขึ้นรูปภาพ แล้วก็พื้นหลังได้
from http.client import HTTPResponse
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
html ="<h1>Hello Rmutsb</h1><br>"
html +="<b>this is first page</b><br>"
html +="Dev by Auscharapan&Waranya <br>V.1"
return HttpResponse(html)
def member1(request):
html ='<h1 style="background-color:#FFFFCC;"> <font color ="#9999FF"><center> History </center></font></h1><br>'
html+='<center> <img src="81869.jpg" width="150" height="200"> </center><br>'
ขอโค้ดรันให้แสดงรูปภาพและพื้นหลัง ใน Django โดยใช้ Notepad หน่อยค่าา
from http.client import HTTPResponse
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
html ="<h1>Hello Rmutsb</h1><br>"
html +="<b>this is first page</b><br>"
html +="Dev by Auscharapan&Waranya <br>V.1"
return HttpResponse(html)
def member1(request):
html ='<h1 style="background-color:#FFFFCC;"> <font color ="#9999FF"><center> History </center></font></h1><br>'
html+='<center> <img src="81869.jpg" width="150" height="200"> </center><br>'