-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (67 loc) · 3.19 KB
/
index.html
File metadata and controls
84 lines (67 loc) · 3.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Github Homepage</title>
<!--Normalize CSS for browser consistency-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" />
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Bitter:wght@700&family=Source+Sans+Pro:wght@400;600&display=swap"
rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<!-- Needed for mobile devices to not zoom out automatically-->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="page">
<header>
<h1>Your Name</h1>
<h2>My Github Homepage</h2>
</header>
<main>
<article id="about">
<h1>About Me</h1>
<p><img src="images/photo.png" alt="photo" class="alignleft">Veggies es bonus vobis, proinde vos postulo
essum magis kohlrabi welsh onion daikon amaranth tatsoi tomatillo melon azuki bean garlic. </p>
<p>Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava
bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko
zucchini. </p>
<p>Turnip greens yarrow ricebean rutabaga endive cauliflower sea lettuce kohlrabi amaranth water spinach
avocado daikon napa cabbage asparagus winter purslane kale. Celery potato scallion desert raisin
horseradish spinach carrot soko. Lotus root water spinach fennel kombu maize bamboo shoot green bean
swiss chard seakale pumpkin onion chickpea gram corn pea.</p>
</article>
<article id="projects">
<h2>My Projects</h2>
<ol>
<li>Here is an important project</li>
<li>Here is an important project</li>
<li>Here is an important project</li>
<li>Here is an important project</li>
<li>Here is an important project</li>
</ol>
<h2>My Skills</h2>
<p>Celery quandong swiss chard chicory earthnut pea potato. Salsify taro catsear garlic gram celery
bitterleaf wattle seed collard greens nori.</p>
<ul>
<li>Special Skill</li>
<li>Special Skill</li>
<li>Special Skill</li>
<li>Special Skill</li>
</ul>
</article>
</main>
<footer>
<h1>Ways to contact me</h1>
<p><strong>Phone</strong> 111.222.3333 <br>
<strong>Email</strong> [email protected] <br>
<strong>Website</strong> <a href="http://somewhere.com">http://somewhere.com</a>
</p>
</footer>
</div>
</body>
</html>