|
1 | | -# GitHub Pages Setup Instructions |
| 1 | +# Taehwa Hong - PhD Research Portfolio |
2 | 2 |
|
3 | | -## Step-by-Step Guide to Create Your PhD Research Website |
| 3 | +## PhD Research Website |
4 | 4 |
|
5 | | -### What You Have Now |
6 | | -I've created template files in: `e:\Second WorkSpace\Topic3\DIGIT_simulation\git_page_templates\` |
7 | | -- `index.html` - Main webpage structure |
8 | | -- `styles.css` - Website styling and design |
9 | | -- `README.md` - This instruction file |
| 5 | +This repository contains the source code for my PhD research portfolio website showcasing my work in tactile sensing and robotics. |
10 | 6 |
|
11 | | -### Step 1: Create Your GitHub Pages Repository |
12 | | -1. Go to GitHub.com and sign in |
13 | | -2. Create a new repository named: `[your-username].github.io` |
14 | | - - For example: `ndolphin-github.github.io` |
15 | | - - Make sure it's PUBLIC |
16 | | - - Initialize with README |
| 7 | +**Website URL:** https://ndolphin-github.github.io |
17 | 8 |
|
18 | | -### Step 2: Copy Files to Local Git Directory |
19 | | -1. Clone your GitHub Pages repository to your local machine: |
20 | | - ```cmd |
21 | | - cd E:\Git_page_source |
22 | | - git clone https://github.com/ndolphin-github/ndolphin-github.github.io.git |
23 | | - cd ndolphin-github.github.io |
24 | | - ``` |
25 | | - |
26 | | -2. Copy the template files from this folder to your git repository: |
27 | | - ```cmd |
28 | | - copy "e:\Second WorkSpace\Topic3\DIGIT_simulation\git_page_templates\index.html" . |
29 | | - copy "e:\Second WorkSpace\Topic3\DIGIT_simulation\git_page_templates\styles.css" . |
30 | | - ``` |
31 | | - |
32 | | -### Step 3: Customize Your Content |
33 | | -Edit the `index.html` file and replace: |
34 | | -- "Your Name" with your actual name |
35 | | -- "your.email@university.edu" with your email |
36 | | -- "Your University Name" with your university |
37 | | -- Add your actual research descriptions |
38 | | -- Add your real publications |
39 | | -- Update social media links |
40 | | - |
41 | | -### Step 4: Upload to GitHub |
42 | | -```cmd |
43 | | -git add . |
44 | | -git commit -m "Initial website setup" |
45 | | -git push origin main |
46 | | -``` |
47 | | - |
48 | | -### Step 5: Enable GitHub Pages |
49 | | -1. Go to your repository on GitHub |
50 | | -2. Click Settings → Pages |
51 | | -3. Source: Deploy from branch |
52 | | -4. Branch: main |
53 | | -5. Save |
54 | | - |
55 | | -### Step 6: View Your Website |
56 | | -Your site will be available at: `https://ndolphin-github.github.io` |
57 | | -(It may take 5-10 minutes to become active) |
58 | | - |
59 | | -### Tips for Customization: |
60 | | -1. **Add Images**: Create an `images` folder and add photos |
61 | | -2. **Update Research**: Replace placeholder text with your actual research |
62 | | -3. **Add Publications**: Include real paper titles, journals, and links |
63 | | -4. **Styling**: Modify `styles.css` to change colors and layout |
| 9 | +### Research Areas: |
| 10 | +- DIGIT Sensor Simulation with SOFA Framework |
| 11 | +- Tactile Perception Networks |
| 12 | +- Neural Network-based Rendering for Tactile Sensors |
64 | 13 |
|
65 | | -### File Structure You Need: |
| 14 | +### File Structure: |
66 | 15 | ``` |
67 | | -your-repository/ |
68 | | -├── index.html |
69 | | -├── styles.css |
70 | | -├── images/ (optional) |
71 | | -│ ├── profile.jpg |
72 | | -│ └── research_diagram.png |
73 | | -└── README.md |
| 16 | +├── index.html # Main webpage |
| 17 | +├── styles.css # Website styling |
| 18 | +└── README.md # This file |
74 | 19 | ``` |
75 | 20 |
|
76 | | -### Next Steps: |
77 | | -1. Test locally by opening `index.html` in a web browser |
78 | | -2. Customize the content with your actual information |
79 | | -3. Upload to GitHub following the steps above |
80 | | -4. Share your new website URL! |
| 21 | +### Technologies Used: |
| 22 | +- HTML5 & CSS3 |
| 23 | +- Responsive Web Design |
| 24 | +- GitHub Pages |
| 25 | + |
| 26 | +### To Update the Website: |
| 27 | +1. Edit the files locally |
| 28 | +2. Commit and push changes: |
| 29 | + ```cmd |
| 30 | + git add . |
| 31 | + git commit -m "Update content" |
| 32 | + git push origin main |
| 33 | + ``` |
0 commit comments