-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 3.3 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
<!DOCTYPE html>
<html>
<head>
<title> Joy Homepage </title>
<link rel="stylesheet" href="style.css" >
<link rel="icon" type="image/png" href="https://i.postimg.cc/kgZVwQDZ/santa1.png">
</head>
<body>
<div class="navigate">
<img id= 'favicon' src='https://i.postimg.cc/kgZVwQDZ/santa1.png' border='0' alt='pink hat'/>
<a href="index.html"><button> Home</button></a>
<a href="about-page.html"><button> About</button></a>
<a href="reading.html"><button> Readings</button></a>
</div>
<div class="link">
<h1>My practice websites</h1>
<a href="https://khuedao1.github.io/Save-the-Penguins/" target="_blank" rel="noopener noreferrer"><button> Final Project</button></a>
<a href="https://khuedao1.github.io/screensaver/" target="_blank" rel="noopener noreferrer"><button> Animation Screen Saver</button></a>
<a href="https://khuedao1.github.io/Structure/" target="_blank" rel="noopener noreferrer"><button> Structure with Grid</button></a>
<a href="box-model/index.html" ><button> Box model</button></a>
<a href="passion-3/index.html"><button> Draft 3</button></a>
<a href="passion-2/index.html"><button> Draft 2</button></a>
<a href="passion-1/index.html"><button> Draft 1</button></a>
</div>
<div id="homepage">
<h1> Hello Hello</h1>
<h2>This is joy // <br> I like watching colorful movies and I really love sci-fi and fantasy</h2>
<br><br><br>
<h2> Practice with position in flexbox</h2>
<p> less specific</p>
<p class="more-specific"> more specific</p>
<p class="more-specific" id="even-more-specific"> even more specific</p>
<p class="more-specific" id="even-more-specific" style="background-color:orange-red"> most specific with inline style</p>
<img src="passion-3/img/grape_hair.PNG" alt="futuristic">
<p>Here is a 3D design I make because I just like the 90s retro wave and futuristic aesthetic</p>
<form id="form">
<label for="survey">Do you like watch sci-fi?</label>
<input type="range" id="survey" name="0" min="not really" max="10"><br><br>
<textarea name="message" rows="10" cols="40" style="background-color: rgb(196, 181, 228); font-size: 18px;">Tell me how did you celebrate New Year: </textarea>
</form>
<div class="square">static</div>
<div class="square relative">relative</div>
<!--when there is a space in class mean that there are multiple class-->
<div class="square fixed">fixed</div>
<div class="container">
<div class="square absolute">absolute</div>
<ul> My favorite movies of 2023:
<li>Wall-E</li>
<li>The Thing 1982</li>
<li>ET: The Extra-Terrestrial</li>
</ul>
</div>
<footer id="footer">
<p><a heref ="https://www.instagram.com/joy.dao_vcu/">joy.dao_vcu</a></p>
</footer>
</div>
</body>
</html