-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
79 lines (76 loc) · 2.6 KB
/
1.html
File metadata and controls
79 lines (76 loc) · 2.6 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html>
<h1>Hwan's HTML world</h1>
<meta charset="utf-8">
<head>
<style>
*{
background-color: gray;
}
a{ color:black; text-decoration:none}
h1 {
font-size:250%;
text-align: center;
border-width: 5px;
border-color:cornflowerblue;
border-style: solid;
display:inline;
}
.saw{
color:goldenrod;
padding:20px;
margin:0;
}
#active{
color:red;
}
#grid{
border:5px solid pink;
display: grid;
grid-template-columns: 500px 1fr;
}
</style>
</head>
<body>
<p style="color:greenyellow">made by Hypertext Markup Language (HTML)</style>
<p><strong>hello my name is <u>Hwan</u></strong></p>
<img src="codingPic.jpg" width="50%">
<p style="margin-top:100px"> Guten Tag, ich heisse Hwan</p>
<p>Things We Are Going to Learn
<li>1. HTML</li>
<li>2. CSS</li>
<li>3. JavaScript</li>
<br>
<h1>
<font color="red">Ways of Saying Hello in Multiple Languages</font>
</h1> <ul>
<li>hi</li>
<li>hola</li>
<li>guten tag</li>
<li>annyeong</li>
</ul>
</p>
<div id="grid">
<div>NAVIGATION</div>
<div>Send & receive text & voice messages in Messages
You can send and receive text messages with friends and contacts on Messages.
Important: Some of these steps only work on Android 6.0 and up. Learn how to check your Android version.
Start a conversation
Open the Messages app .
Tap Compose Compose.
In "To," enter the names, phone numbers, or email addresses that you'd like to message. You can also pick from your top contacts or your whole contact list.
Send a message
Tap the message box.
Enter your message. If you'd like to save it as a draft and go back, tap Back Back.
When you’re done, tap Send Send.
Tip: Learn how to share contacts in your messages.
Send a voice message</div>
</div>
<p>
<a href="https://www.google.com/" class="saw" target="_blank" title="google">Google Here!</a></p>
<p>
<a href="2.html" target="_blank" class="saw" id="active" title="what is one plus one"> What is 1+1?</a>
</p>
<input type="button" value="night" onclick="document">
</body>
</html>