-
Notifications
You must be signed in to change notification settings - Fork 1
/
index1.html
65 lines (60 loc) · 1.78 KB
/
index1.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
<!DOCTYPE html>
<html>
<head>
<title>Summer Software Manga Website</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- stuff i guess -->
<a href="https://discord.gg/7wtqV4kq4r">
<img src="images/codezero-high-resolution-logo-white.png" alt="Team Logo">
</a>
<p class = "username">Manga Website</P>
<a href="page1.html"> the audio page</a>
<a href="page2.html">the video page</a>
<a href="page3.html">the table page</a>
<a href="page4.html">the iframe page</a>
<a href="page5.html">
<button>
the form page
</button>
</a>
<a href="cssstuff.html">css - gradient and background image</a>
<a href="cssSTUFF2.html">css2 - margin</a>
<a href="css3.html">css3 - float</a>
<a href="css4.html">css4 - position</a>
<a href="css5.html">css5 - links</a>
<a href="css6.html">css6 - icons</a>
<a href="css7.html">css7 - transform boxes</a>
<a href="css8.html">css8 - animation</a>
<br>
<br>
<br>
<br>
<h1>WEBSITE HEADER</h1>
<H2>WEBSITE HEADER</H2>
<p>This is <b>bold</b> text</p>
<p>this is <i>italic</i> text</p>
<p> this is <big>big</big> text </p>
<p>this is <small>small</small> text </p>
<p>this is <sub>scuscript</sub>text </p>
<p>this is <sup>superscript</sup> text </p>
<p>this is <ins>inserted or underlined</ins> text</p>
<p>this is <del>deleted</del> text</p>
<p>this is <mark>marked</mark> text</p>
<ul>
<li>manga1
<ol type="I">
<li>chapter 1</li>
<li>chapter 2</li>
</ol>
</li>
</ul>
<dl>
<dt>Manga1</dt>
<dd>This is the description for Manga1</dd>
<dt>Manga2</dt>
<dd>This is the description for Manga2</dd>
</dl>
</body>
</html>