-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (78 loc) · 2.58 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
<!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">
<title>Liwen Wu's portfolio</title>
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/jpg" href="image/icon.jpg">
</head>
<body>
<!--if have time add another language-->
<!--this is navigation-->
<!--will have a class for styling the whole navigation-->
<nav class="allnav">
<!--bluemilk architects will be styled and on the left-->
<div class="homepage">
<a href="file:///D:/SI539/portfolio/index.html">BLUEMILK ARCHITECTS</a>
</div>
<!--navigation will be on the right corner-->
<div class="nav-to-other-pages">
<ul>
<li><a href="file:///D:/SI539/portfolio/mywork.html">MY WORK</a></li>
<li><a href="file:///D:/SI539/portfolio/photography.html">PHOTOGRAPHY</a></li>
<li><a href="file:///D:/SI539/portfolio/contact.html">CONTACT</a></li>
</ul>
</div>
</nav>
<!--this header is for the main picture-->
<!--add alter text, think of screen reader-->
<header class="header">
<!--the main pic will be styled here-->
<figure class="headerpic">
<img class="hpic" src="image/homepage.jpg" alt="Achitecture" >
<figcaption class="copyright">©2021 Liwen Wu</figcaption>
</figure>
<!--this text will be at the left of the main pic-->
<div class="headertext">
<h1 class="headerh1">
Bluemilk Architects
</h1>
<!--this p will be at the left of main pic and under the h1 content-->
<p class="headerp">
a short intro of this web, havent written, place holder
</p>
</div>
</header>
<!--a brief introduction of myself-->
<!--add alter text, think of screen reader-->
<main>
<!--a brief introduction of myself will be at the left of the self pic-->
<div>
<h1 class="h1header">
About Me
</h1>
</div>
<div>
<p class="pageintro">
A brief introduction of myself but haven't written yet, a place holder
</p>
</div>
<!--a pic of myself will be at the right of the self-intro-->
<div>
<figure>
<img src="image/icon.jpg" width="500" alt="selfie">
<figcaption>HEY THIS IS ME</figcaption>
</figure>
</div>
</main>
<!--add some social media account, adjust the section height, color-->
<footer>
EAMIL: [email protected]
<br>TEL: +1 734-548-0501
<br>INSTAGRAM: bluemilk_126
</footer>
</body>
</html>