-
Notifications
You must be signed in to change notification settings - Fork 0
/
griffinTemplate1.html
85 lines (77 loc) · 2.67 KB
/
griffinTemplate1.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
83
84
85
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<title>Griffin template 1</title>
<link rel= "stylesheet" href = "css/griffinTemplate1.css"> <!--- Link style sheet im using-->
</head>
<div class = "navbar">
<nav>
<H2 class = "logo"> portfolio</H2>
<ul>
<li><a href = "#Home">Home</a></li>
<li><a href = "#about">About</a></li>
<li><a href = "#Projects">Projects</a></li>
<li><a href = "#Contact">Contact me</a></li>
</ul>
</nav>
</div>
<body>
<div class="content">
<h4>Hello, my name is</h4>
<h1>Enter Name Here</h1>
<h3>I am a _____.</h3>
</div>
</div>
<!----About section start---->
<section id = about>
<div class="about">
<div class="main">
<img src="images/headshot.jpg">
<div class="about-text">
<h2>About Me</h2>
<p>In this paragraph you would be able to enter any text you want explaining what you do. For example you could tell us that you are a web designer who specializes in interactive websites you can make it as long as you want and it will expant as you enter more information! pretty cool right? also put a picture of your face next to this.</p>
<button type="button"><li><a href="mailto:">we can link your email here!</a></li></button>
</div>
</div>
</div>
</section>
<!-----Project section start----------->
<section id = Projects>
<div class="Projects">
<div class="title">
<h2>My projects</h2>
</div>
<div class="box">
<div class="card">
<i class="info"></i>
<h5>Enter title here</h5>
<div class="text">
<p>Every website should be built with two primary goals: Firstly, it needs to work across all devices. Secondly, it needs to be fast as possible.</p>
</div>
</div>
<div class="card">
<i class="info"></i>
<h5>Enter title here</h5>
<div class="text">
<p>Every website should be built with two primary goals: Firstly, it needs to work across all devices. Secondly, it needs to be fast as possible.</p>
</div>
</div>D
<div class="card">
<i class="info"></i>
<h5>Enter title here</h5>
<div class="text">
<p>Every website should be built with two primary goals: Firstly, it needs to work across all devices. Secondly, it needs to be fast as possible.</p>
</div>
</div>
</div>
</div>
</section>
<!------Contact Me------>
<section id = "Contact">
<div class="contact-me">
<p>Let Me Be A part of your team.</p>
<a class="button-two" href="mailto:">Email me!</a>
</div>
</section>