-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
82 lines (64 loc) · 2.2 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
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
<!--DOCTYPE must be there to let the browser know this is HTML-->
<!DOCTYPE html>
<!--An HTML start tag defines the start of the HTML document
this languange is set for English-->
<html lang="en">
<meta charset="UTF-8">
<title>Madeline's Porfolio</title>
<!--Link tag links to a stylesheet-->
<link href="style.css" rel="stylesheet" type="text/css" />
<!--Makes the page look good on various sizes of screens-->
<meta name="viewport" content="width=device-width,initial-scale=1">
<!--Between the style tags is where you could put CSS-->
<style>
</style>
<!--The script tag could link to a script in between the quotes ""-->
<script src=""></script>
<!--Body tags mark the visible body of the HTML document-->
<body>
<br>
<br>
<div class="topnavbar">
<a href="index.html">Home</a>
<a href="WorkExperience.html">Work Experience</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
<br>
<br>
<!--Image tags define HTML images-->
<img src="profile_photo.png" alt="Me!" style="width:30%">
<!--Good HTML coding practice: Pack HTML chunks into div elements-->
<!--Makes the code more organized and readable, especially convient when debugging-->
<div class="Bio">
<!--Heading tags define HTML headings-->
<h1>Madeline Miller</h1>
<!--Paragraph tags define HTML paragraphs-->
<p1>3rd Year, Computer Science Major</p1>
<br>
<p2>University of California, Santa Cruz</p2>
<br>
<p2>Sept 2021 - June 2025</p2>
</div>
<div class="WorkExperience">
<!--What project experience do you have?-->
</div>
<div class="ProjectExperience">
<!--What project experience do you have?-->
</div>
<div class="HobbiesAndGoals">
<!--What are your hobbies?-->
<!--What are professional and personal development goals?-->
</div>
<div class="ContactMe">
<!--Email-->
<!--Phone number-->
<!--LinkedIn profile-->
<!--GitHub profile-->
</div>
<dif class="UploadResume">
<!--Upload photo of your resume-->
</dif>
</body>
<!--An HTML end tag defines the end of the HTML document-->
</html>