-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
57 lines (49 loc) · 2.02 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
<!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" />
<title>Webpage Exercise</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
</head>
<body>
<header>
<nav>
<div class="menu-icon">
<i class="fa fa-bars fa-2x"></i>
</div>
<div class="logo">
CHAR WAN
</div>
<div class="menu">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blog</a></li>
<li><a href="contactform.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<div class="flex-container">
<div>
<h1 class="header moveright">Hello!</h1>
<p class="moveright">I'm Charmaine, and welcome to my site! <br>
There's so much I hope to share with you <br>
I hope you'll take some time to look through my portfolio<br>
and if anything catches your eye,<br>
find me using the button below
</p>
<button class="button button1">contact</button>
<button class="button button2">portfolio</button>
</div>
<div>
<img src="https://images.pexels.com/photos/3769614/pexels-photo-3769614.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" class="floatRight" width="450" height="450">
</div>
</div>
</body>
</html>