-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
123 lines (117 loc) · 5.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Webpage</title>
<link rel="stylesheet" href="css/mypage.css" />
</head>
<body>
<nav>
<h3 class="logo">CodingForEverybody</h3>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
<a href="blog.html">Read Blog</a>
</nav>
<main>
<table width="100%">
<tbody>
<tr>
<td>
<!-- Article Section -->
<article>
<h4>Welcome to HTML</h4>
<small>
April 12, 2030
</small>
<div>
<video controls width="100%">
<source src="videos/bunny.mp4" type="video/mp4">
<p>Hey you are using ye old browser please upgrade</p>
</video>
</div>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Ullam nam recusandae obcaecati
placeat minus numquam inventore fugiat laborum alias molestiae?</p>
<p>
<a href="blog/welcome_to_html.html">
Read More
</a>
</p>
</article>
<!-- End Article Section -->
<hr />
<!-- Article Section -->
<article>
<h4>Welcome to JavaScript</h4>
<small>
April 12, 2030
</small>
<div>
<img src="images/test_image.jpg" alt="Test Image" width="100%" title="Test Image" class="" id="">
</div>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Ullam nam recusandae obcaecati
placeat minus numquam inventore fugiat laborum alias molestiae?</p>
<p>
<a href="blog/welcome_to_js.html">
Read More
</a>
</p>
</article>
<!-- End Article Section -->
<hr />
<!-- Article Section -->
<article>
<h4>Welcome to CSS</h4>
<small>
April 12, 2030
</small>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Ullam nam recusandae obcaecati
placeat minus numquam inventore fugiat laborum alias molestiae?</p>
<p>
<a href="blog/welcome_to_css.html">
Read More
</a>
</p>
</article>
<!-- End Article Section -->
</td>
<td width="25%" valign="top">
<aside>
<h4></h4>
<form method="GET" action="">
<div>
<label for="firstname">First Name</label><br />
<input type="text" name="firstname" id="firstname" placeholder="Your first name"
class="" required="required" />
</div>
<br />
<div>
<label for="email">Email Address</label><br />
<input type="email" placeholder="[email protected]" name="email" id="email"
required="required">
</div>
<br />
<div>
<button type="submit">Subscribe!</button>
</div>
</form>
</aside>
</td>
</tr>
</tbody>
</table>
</main>
<footer>
<p>
<a href="https://www.facebook.com/groups/1088943884540928/">Learning to Code Group</a>
<a href="https://twitter.com/KalobTaulien">@KalobTaulien</a>
</p>
<p>
© 2030 CodingForEverybody.com
</p>
</footer>
</body>
</html>