-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (121 loc) · 3.49 KB
/
index.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<html>
<!-- this website was created as a learning tool -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>This website</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<table cellspacing="20">
<tr>
<td>
<img src="images/800px-Austin_Texas_Sunset_Skyline_2011.jpeg" alt="free image for image size examples" style="width:500px;height:400px;">
</td>
<td>
<h5> Welcome to this website
we are located in Austin Texas</h5>
<h4>The purpose of this website is for html training</h4>
<h6>
My username is sttub I am one of the founders and a primary
devopler with <em>This website's development team.</em>
</h6>
<h6>you can contact me at:
<a href="contact.html">contact me</a>
</h6>
</td>
</tr>
</table>
<hr size ="3" noshade>
<hr size ="1">
<a href="itDev.html">IT Development background</a>
<!-- li><a href="https://example.com">Website</a></li>-->
<hr size ="1">
<a href="skills.html">Skills</a>
<hr size ="1">
<h3>
Web Development Software
</h3>
<p>
<ul>
<!-- unordered list -->
<li>html</li>
<li>css
<ul>
<li>css framework</li>
</ul>
</li>
<li>javascript</li>
<li>nodejs</li>
<li>ruby on rails</li>
<li>database systems
<ul>
<li>MySQL</li>
<li>PostgreSQL</li>
<li>MariaDB</li>
</ul>
</li>
<li>Golang programming language</li>
</ul>
</p>
<hr size ="1">
<p>
<h4>Ordered List</h4>
<ol>
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
</p>
<hr size ="1">
<a href="notepad.html">notepad</a>
<hr size ="1">
<!-- this is a comment-->
<!-- This comment
can go on and on and on. It
can go on different lines -->
<p><em>
We are a small team of website developers combining the
most advanced methods and coding languages to produce
the fastest and most stunning sites available.
</p>
<p>
We combine
spectacular imaging with your companies content,
in order to produce a long lasting and memorable
experience for your customers and users.
</p>
<p>
This with a secure operating system, security presciples
and security auditing. We can include your choice
of private, public cloud or yoursite hosting solutions.
</em></p>
<hr size ="1">
<a href="htmlresources.html"><h5> HTML RESOURCES</h5></a>
<!-- li><a href="https://example.com">Website</a></li>-->
<!-- -->
<!-- Table example-->
<table>
<thead>
<tr>
<th>First Header</th>
<th>Second Header</th>
</tr>
</thead>
<tbody>
<tr><td>Body first line</td></tr>
<tr><td>Body 2nd line</td></tr>
<tr><td>Body third</td></tr>
</tbody>
<tfoot>
<tr>
<td>Footer content 1</td>
<td>Footer content 2</td>
</tr>
</tfoot>
</table>
<hr size ="1">
</body>
</html>