-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
38 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<!-- This title is used for tabs and bookmarks -->
<title>MyName's Homepage</title>
<!-- Use UTF character set, a good idea with any webpage -->
<meta charset="UTF-8" />
<!-- Set viewport so page remains consistently scaled w narrow devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Include a sitewide CSS file for consistent styling across the site -->
<link rel="stylesheet" type="text/css" href="css/site.css">
<!-- Lab-specifc CSS file for any special styling of this particular page -->
<link rel="stylesheet" type="text/css" href="css/homepage.css">
<!-- Link to javascript file - DEFER waits until all elements are rendered -->
<!-- <script type="text/javascript" src="./js/lab.js" DEFER></script> -->
</head>
<body>
<!-- Style this page by changing the CSS in ../css/site.css or css/lab.css -->
<main id="content">
<section>
<h1>MyName's Homepage</h1>
<div class="minor-section">
<!-- Note that all filenames use lowercase and no spaces -->
<img class="cat-photo" src="./img/cute-grey-kitten.jpg">
<h2>About Me</h2>
<p>Tell us about yourself. Add photos. Customize this. Go crazy.</p>
</div>
</section>
<nav id="links">
<!-- Put links to labs here. -->
</nav>
</main>
</body>
</html>