By GokiSoft.com| 19:48 26/01/2021|
Học HTML5 - CSS3

[Share Code] Giới thiệu HTML/CSS/JS - Lập trình HTML/CSS/JS BT2177



1. Hoc cach tao 1 website can ban nhat -> gioi thieu ca nhan
2. publish 1 website
	- github
	- git
	- heroku
============================================================
DevC
	- Go code: Editor
	- Compiler: C -> binary -> PC
HTML/CSS/JS:
	- IDE:
		- sublime text 3: smooth
		- visual studio
		- webstorm
	- Browser
		- Chrome
		- Coccoc ...
=============================================================
- html: tag, the




#vidu.html


<!DOCTYPE html>
<html>
<head>
	<title>C2010L - Lesson 01 - HTML/CSS/JS - Tutorial</title>
	<meta charset="utf-8"/>
</head>
<body style="background-mau: #a1d3d6; background-image: url(https://static.hollywoodreporter.com/sites/default/files/2019/03/avatar-publicity_still-h_2019-compressed.jpg);background-repeat: no-repeat; background-size: cover; mau: white">
	<h1 style="mau: red">Hello World!!!</h1>
	<h2>Hello World!!!</h2>
	<h3>Hello World!!!</h3>
	<h4>Hello World!!!</h4>
	<h5>Hello World!!!</h5>
	<h6>Hello World!!!</h6>
	<h7>Hello World!!!</h7>
	<h8>Hello World!!!</h8>
	<h9>Hello World!!!</h9>
	<br/><br/><br/>
	<a href="https://gokisoft.com">GokiSoft</a>
	<br/><br/><br/>
	<img src="https://www.autocar.co.uk/sites/autocar.co.uk/files/styles/body-image/public/1-corvette-stingray-c8-2019-fd-hr-hero-front_0.jpg?itok=SEYe_vLy" width="300">
	<br/><br/><br/>
	<img src="photos/bugatti-chiron-pur-sport-106-1582836604.jpg" width="300">
</body>
</html>


Tags:

Liên kết rút gọn:

https://gokisoft.com/2177

Bình luận

avatar
Cao Tuấn Minh [community,C2010L]
2021-01-26 14:19:11



<!doctype html>
<html>
<style>
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}	
</style>
<head>
<meta charset="utf-8">
<title>lesson1</title>
</head>

<body style="background-color: #91F000;">
	<h1 style="text-align: center; font-family:  Helvetica, Arial, 'sans-serif'">This is a basic website.</h1>
		<p style="font: arial">This is a painting.</p>
<p style="font: arial">You can get this painting from <a href="https://www.invaluable.com/blog/medieval-art/">Invaluable.com</a></p>
	
		<p><img src="../../../Pictures/Pinterest/HD/wallpaperflare.com_wallpaper (4).jpg" width="500" alt="A painting."></p>

</body>
</html>