-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path08_using_lists.html
More file actions
92 lines (79 loc) · 3.04 KB
/
08_using_lists.html
File metadata and controls
92 lines (79 loc) · 3.04 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
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Aim for Lesson" content="learning lists">
<title>Lists</title>
</head>
<body>
<!-- using unordered lists -->
<h3>Why learn how to code</h3>
<!-- Inserting code into a website -->
<code>
<pre>
import os
if os.uname == "posix":
print("[+] This is a Unix system!")
while 1:
print("We're always good!!")
</pre>
</code>
<p>Using unordered lists</p>
<ul type="square">
<li>Combining technical skills with creativity</li>
<li>Becoming aware of what it takes</li>
<li>Creating a website of your own</li>
<li>Establishing an online presence</li>
<li>Becoming self-employed and starting your own business</li>
</ul>
<!-- Using ordered lists -->
<h3>Solving problems in a structured way(coding)</h3>
<p>Using ordered lists</p>
<ol type="i">
<li>First, you will be forced to start out with a solid plan,</li>
<li>Secondly, you’ll identify key potential areas for errors, and</li>
<li>Thirdly, you will work towards your goal step by step.</li>
</ol>
<!-- Using definition lists -->
<p>
Terms used in emails. <i>Using definition lists</i>
</p>
<dl>
<dt>S/MIME:</dt>
<dd>
S/MIME is a standard for secure email messages. S/MIME messages offer sender authentication using digital
signatures and can be encrypted to protect privacy.
</dd>
<dt>SMTP (Simple Mail Transfer Protocol):</dt>
<dd>
SMTP, short for Simple Mail Transfer Protocol, is the protocol used for outgoing email on the Internet. It
defines a message format and a procedure to route messages through the Internet from source to destination
via
email servers.
</dd>
<dt>Spam:</dt>
<dd>
Spam is unsolicited email. Not all unsolicited email is spam, however. Most spam is sent in bulk to a large
number of email addresses and advertises some product or — considerably less often — political viewpoint.
</dd>
<dt>Spammer:</dt>
<dd>
A spammer is a person or entity (such as a company) that sends spam emails
</dd>
<dt>Spamvertise:</dt>
<dd>
Something is spamvertised when it is promoted (or merely appears) in spam. The term is commonly used with
Web
sites or email addresses that are part of the body of an unsolicited commercial email.
</dd>
<dt>Subject:</dt>
<dd>
The "Subject" of an email message should be a short summary of its contents. Email programs usually display
it
in a mailbox display together with the sender.
</dd>
</dl>
</body>
</html>