CSS-Small Practice of Web Page Making

Posted by weevil on Mon, 12 Aug 2019 14:00:04 +0200

1. Naked Running of Web Pages

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Naked Running of Web Page </title>
</head>
<body>
<h1> James Gosling, the Father of Java</h1>
<img src="../java.jpg"/>
<p> James Gosling, the father of Java, was born in Canada and a computer programming genius. While studying for a PhD in computer science at Carnegie Mellon University, he wrote a multiprocessor version of Unix operating system. </p>
<p> In 1991, while working for Sun, Gosling and a group of technicians created a project called Oak to develop programming languages running on virtual machines, while allowing programs to run on multiple platforms such as TV set-top boxes. Later, this work evolved into Java. With the popularity of the Internet, especially the emergence of web browsers for Netscape development, Java has become the most popular development language in the world. So it's called the father of Java. </p>
<p> Gosling has always been dissatisfied with oracle. As the engineer left Oracle, he wrote, "All I said was about detail and honesty, but revealing the truth would only do more harm." "At Sun's and oracle's M&A meetings, there was a lot of debate about Sun's and Google's patents," he said. The Oracle lawyer's eyes sparkled.
In the early stages of Sun's acquisition, oracle expressed a willingness to engage in legal battles with Google, he said. He himself has criticized the fragmentation in the Android market as too serious to affect the work of software developers. </p>
</body>
</html>

Operation results:

2. Setting Titles

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
< title > Set the title </title >
<style type="text/css">
	/*
		Beautify pages with CSS
	*/
	
	/* Setting titles*/
	h1{
		color: white;
		background-color: gray;
		text-align: center;
		padding: 20px;
	}
</style>
</head>
<body>
<h1> James Gosling, the Father of Java</h1>
<img src="../java.jpg"/>
<p> James Gosling, the father of Java, was born in Canada and a computer programming genius. While studying for a PhD in computer science at Carnegie Mellon University, he wrote a multiprocessor version of Unix operating system. </p>
<p> In 1991, while working for Sun, Gosling and a group of technicians created a project called Oak to develop programming languages running on virtual machines, while allowing programs to run on multiple platforms such as TV set-top boxes. Later, this work evolved into Java. With the popularity of the Internet, especially the emergence of web browsers for Netscape development, Java has become the most popular development language in the world. So it's called the father of Java. </p>
<p> Gosling has always been dissatisfied with oracle. As the engineer left Oracle, he wrote, "All I said was about detail and honesty, but revealing the truth would only do more harm." "At Sun's and oracle's M&A meetings, there was a lot of debate about Sun's and Google's patents," he said. The Oracle lawyer's eyes sparkled.
In the early stages of Sun's acquisition, oracle expressed a willingness to engage in legal battles with Google, he said. He himself has criticized the fragmentation in the Android market as too serious to affect the work of software developers. </p>
</body>
</html>

Operation results:

3. Setting Pictures

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Setting Pictures</title>
<style type="text/css">
	/*
		Beautify pages with CSS
	*/
	
	/* Setting titles */
	h1{
		color: white;
		background-color: gray;
		text-align: center;
		padding: 20px;
	}
	
	/* Setting Pictures  */
	img{
		width: 150px;
		height: 180px;
		float: left;
		margin: 5px;
	}
</style>
</head>
<body>
<h1>Java Father-James·Ryan Gosling</h1>
<img src="../java.jpg"/>
<p>Java Father-James·Born in Canada, Gosling is a computer programming genius. In Carnegie·When he was studying for his doctorate in computer science at Mellon University, he wrote a multiprocessor version of the Unix Operating system.</p>
<p>1991 Years, in Sun During the company's work, Gosling and a group of technicians created a project called Oak The project aims to develop a programming language that runs on virtual machines, while allowing programs to run on multiple platforms such as TV set-top boxes. Later, this work evolved into Java. With the popularity of the Internet, especially the appearance of web browsers developed by Netscape, Java Become the most popular development language in the world. So it's called Java Father.</p>
<p>Gosling has always been right oracle The company is dissatisfied. As the engineer left Oracle, he wrote, "All I said was about detail and honesty, but revealing the truth would only do more harm." It is also said that "in the ____________ Sun and oracle At M&A meetings, there was a lot of talk about it. Sun A quarrel with Google Patents. oracle The lawyer's eyes sparkled.
//In the early stages of Sun's acquisition, oracle expressed a willingness to engage in legal battles with Google, he said. He himself has criticized the fragmentation in the Android market as too serious to affect the work of software developers. </p>
</body>
</html>

Operation results:

4. Setting Text

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Setting text</title>
<style type="text/css">
	/*
		Beautify pages with CSS
	*/
	
	/* Setting titles */
	h1{
		color: white;
		background-color: gray;
		text-align: center;
		padding: 20px;
	}
	
	/* Setting Pictures  */
	img{
		width: 150px;
		height: 180px;
		float: left;
		margin: 5px;
	}
	
	/* Setting text */
	p{
		font-size: 12px;
		line-height: 1.5;
		text-indent: 2em;
	}
</style>
</head>
<body>
<h1>Java Father-James·Ryan Gosling</h1>
<img src="../java.jpg"/>
<p>Java Father-James·Born in Canada, Gosling is a computer programming genius. In Carnegie·When he was studying for his doctorate in computer science at Mellon University, he wrote a multiprocessor version of the Unix Operating system.</p>
<p>1991 Years, in Sun During the company's work, Gosling and a group of technicians created a project called Oak The project aims to develop a programming language that runs on virtual machines, while allowing programs to run on multiple platforms such as TV set-top boxes. Later, this work evolved into Java. With the popularity of the Internet, especially the appearance of web browsers developed by Netscape, Java Become the most popular development language in the world. So it's called Java Father.</p>
<p>Gosling has always been right oracle The company is dissatisfied. As the engineer left Oracle, he wrote, "All I said was about detail and honesty, but revealing the truth would only do more harm." It is also said that "in the ____________ Sun and oracle At M&A meetings, there was a lot of talk about it. Sun A quarrel with Google Patents. oracle The lawyer's eyes sparkled.
//In the early stages of Sun's acquisition, oracle expressed a willingness to engage in legal battles with Google, he said. He himself has criticized the fragmentation in the Android market as too serious to affect the work of software developers. </p>
</body>
</html>

Operation results:
5. Setting up the whole page

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Setting up the whole page</title>
<style type="text/css">
	/*
		Beautify pages with CSS
	*/
	
	/* Setting up the whole page  */
	body{
		margin: 0px;
		background-color: #DFDFDF;
	}
	
	/* Setting titles */
	h1{
		color: white;
		background-color: gray;
		text-align: center;
		padding: 20px;
	}
	
	/* Setting Pictures  */
	img{
		width: 150px;
		height: 180px;
		float: left;
		margin: 5px;
	}
	
	/* Setting text */
	p{
		font-size: 12px;
		line-height: 1.5;
		text-indent: 2em;
	}
</style>
</head>
<body>
<h1>Java Father-James·Ryan Gosling</h1>
<img src="../java.jpg"/>
<p>Java Father-James·Born in Canada, Gosling is a computer programming genius. In Carnegie·When he was studying for his doctorate in computer science at Mellon University, he wrote a multiprocessor version of the Unix Operating system.</p>
<p>1991 Years, in Sun During the company's work, Gosling and a group of technicians created a project called Oak The project aims to develop a programming language that runs on virtual machines, while allowing programs to run on multiple platforms such as TV set-top boxes. Later, this work evolved into Java. With the popularity of the Internet, especially the appearance of web browsers developed by Netscape, Java Become the most popular development language in the world. So it's called Java Father.</p>
<p>Gosling has always been right oracle The company is dissatisfied. As the engineer left Oracle, he wrote, "All I said was about detail and honesty, but revealing the truth would only do more harm." It is also said that "in the ____________ Sun and oracle At M&A meetings, there was a lot of talk about it. Sun A quarrel with Google Patents. oracle The lawyer's eyes sparkled.
//In the early stages of Sun's acquisition, oracle expressed a willingness to engage in legal battles with Google, he said. He himself has criticized the fragmentation in the Android market as too serious to affect the work of software developers. </p>
</body>
</html>

Operation results:

Topics: Java Oracle Programming Google