-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.html
More file actions
32 lines (31 loc) · 788 Bytes
/
Copy pathstyle1.html
File metadata and controls
32 lines (31 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>
My Webpage!
</title>
<!-- CSS code in tag <style>-->
<style>
h1{
color:darkgreen;
text-align: center;
}
p{
color:red;
}
</style>
</head>
<body>
<!-- <h1 style= "color:darkgreen; text-align: center;">
<h1 style= "color:#0c8e05; text-align: center;"> -->
<h1>
Welcome to My Webpage! Bienvenue sur ma page Web.
</h1>
<p>
Hello, world! This is a paragraph of text. Salut, monde! Ceci est un paragraphe de texte.
</p>
<p>
This is another paragraph. Ceci est un autre paragraphe.
</p>
</body>
</html>