สอนทำเว็บไซต์

คิวอาร์โค้ด : บาร์โค้ด

สอนการทำคิวอาร์โค้ดและบาร์โค้ด

barcode128.php

<!DOCTYPE html> <html lang="en"> <head> <title>Lekjew.com</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php include_once("include/style.php"); ?> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Libre+Barcode+128+Text&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Libre+Barcode+39" rel="stylesheet"> <style> @font-face { font-family: 'QRCodeFont'; src: url("font/QR font tfb.ttf"); font-weight: normal; font-style: normal; } .barcode128 { font-family: "Libre Barcode 128 Text", system-ui; font-weight: 400; font-style: normal; font-size: 60px; } .font39{font-family: 'Libre Barcode 39', cursive; font-size:2.2em; text margin-left:25px; } </style> </head> <body> <?php include_once("include/header.php"); ?> <div class="container minbody"> <div class="col-md-12 m-20"> BarCode128 </div> <div class="col-md-12 m-20 barcode128"> BarCode128 </div> <div class="col-md-12 m-20 QRCode"> Font39 </div> <?php $qrcode = "OX451217|25152235|ORD6810250001|0000012525"; ?> <img src="https://qrcode.tec-it.com/API/QRCode?data=<?php echo $qrcode; ?>&backcolor=%23ffffff" /> </div> <?php include_once("include/footer.php"); ?> </body> </html> <?php include_once("include/js.php"); ?>