-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (81 loc) · 3.33 KB
/
index.html
File metadata and controls
85 lines (81 loc) · 3.33 KB
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
<!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>Your own personal site</title>
</head>
<body>
<header>
<nav>
<a href="./index.html">
<img src="./image/logo.svg" alt="Jhon blog logo">
</a>
<ul class="header__list">
<li><a href="./blog.html">Blog</a></li>
<li><a href="./work.html">Work</a></li>
<li><a href="./index.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>HHi, I’m John! <br>
Creative Technologist</h1>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit
mollit. Exercitation veniam consequat sunt nostrud amet.</p>
<a href="./work.html">Check my Work</a>
<img src="./image/hero_image.jpg" alt="Hero image">
</section>
<section>
<h2>Recent Posts</h2>
<a href="./blog.html">View all</a>
<ul>
<li>
<h3>Post Title</h3>
<time datetime="2021-02-12">12 Feb 21</time> <span>| Design System</span>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit
mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</li>
</li>
<li>
<h3>Post Title</h3>
<time datetime="2021-02-12">12 Feb 21</time> <span>| Design System</span>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit
mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</li>
</ul>
</section>
<section>
<h2>Featured Work</h2>
<a href="./work.html">View all</a>
<ul>
<li>
<img src="./image/dashboard.jpg" alt="Designing Dashboards">
<h3>Designing Dashboards</h3>
<p><span>2020</span><span>Dashboard</span></p>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit
mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</li>
<li>
<img src="./image/vibrant_portraits.jpg" alt="Vibrant Portraits">
<h3>Vibrant Portraits</h3>
<p><span>2018</span><span>Illustration</span></p>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit
mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</li>
</ul>
</section>
</main>
<footer>
<address><ul>
<li><a href="#"><img src="./image/Figma.svg" alt="Figma"></a></li>
<li><a href="#"><img src="./image/Instagram.svg" alt="Instagram"></a></li>
<li><a href="#"><img src="./image/Twitter.svg" alt="Twitter"></a></li>
</ul>
</address>
<p>© 2022 Your Name. All rights reserved.</p>
</footer>
</body>
</html>