-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
57 lines (52 loc) · 2.03 KB
/
home.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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="home.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div>
<nav>
<ul>
<li><a href="home.html" class="navbar">Home</a></li>
<li><a href="index.html" class="navbar">About Me</a></li>
<li><a href="getintouch.html" class="navbar">Contact</a></li>
</ul>
</nav>
</div>
</header>
<h1>Portfolio</h1>
<div class="ball"></div>
<div class="balltwo"></div>
<div class="cards">
<article class="card">
<header>
<h2>My First Webpage</h2>
</header>
<img class="firstpic" src="helloworldpic.png" alt="HelloWorld">
<div class="content">
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Deleniti necessitatibus iusto libero ea, exercitationem unde laborum odit? Nam facilis voluptatum earum molestias, error laborum? Cupiditate, doloremque quasi? Fugit, praesentium cum.</p>
</div>
<footer>
<a href="helloworld.html" class="linktofirst" target="_blank">Check it out here!</a>
</footer>
</article>
<article class="card">
<header>
<h2>My HTML Scrapbook</h2>
</header>
<img class="secondpic" src="scrapbookpic.png" alt="Screenshot of scrapbook">
<div class="content">
<p>Practising HTML I have made this Scrapbook.</p>
</div>
<footer>
<a href="html-scrapbook.html" class="linktosecond" target="_blank">Check it out here!</a>
</footer>
</article>
</div>
</body>
</html>